.topPage {
    height: 150px;
}

.bodyHead {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size:xx-large;
}

#body1 {
    background: linear-gradient(#6ab2c4, #2182af);
    color: white;
    border: solid #04171b;
    border-radius: 30px;
    box-shadow: 10px 10px 3px 2px rgba(180, 144, 178, 0.2);
    height: 700px;
    
}

#bodyDescription1 {
    margin:5%;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
}

.header {
    text-align: center;
}
.bodyImage {
    height: 20%;
    width: 20%;
    border: solid 2px purple;
}

.bodyImage2 {
    height: 20%;
    width: 20%;
    border: solid 2px purple;
    float:right;

}


#body2 {

}

#plane{
    width: 10%;
    height: 80%;
    float: left;
    border-radius: 20%;
}

#map{
    width: 10%;
    height: 80%;
    float: right;
    border-radius: 20%;
    margin-left: 30%
}

#body3 {

}

#body4 {
    text-size-adjust: 20px;
}
/*Icons and Buttons*/

#copyright {
    text-align: center;
}

.button {
    color: red;
    background-color: lightblue;
    font-weight: bolder;
    border: solid 2px black;
    border-radius: 20px;
    float: left;
    align-items: center;
    margin-left: 12%;
    padding-left: 2%;
    padding-right: 2%;
}

.button:hover{
    background-color: red ;
    color: black;
}


/*Table Stuff*/


.tableBody {
    background-color: white;
    
}
#flightPrice {
    background-color: lightpink;
}
.tableheader {
    background-color:lightgreen;
}

.headers {
    background-color: lightgreen;
    text-align: center
}


/*Hiking File Stuff*/

#hikingHeader {
    align-content: center;
}

.hikingPics {
    height:50%;
    width:30%;
    margin-left:.5%;
    margin-right: .5%;
    border: solid black 5px;
    align-self: center;
}

#hikingText {
    height: 50%;
    width: 30%;
    margin-left:.5%;
    margin-right:.5%;
    border: solid black 5px;
    align-items: center;

}

.northPic {
    height:50%;
    width:30%;
    margin-left:.5%;
    margin-right: .5%;
    border: solid black 5px;
    align-self: center;
   
}

#northText {
    height: 50%;
    width: 30%;
    margin-left:.5%;
    margin-right:.5%;
    border: solid black 5px;
    align-items: center;
    

}


/*Contact Form*/

input[type=text], select, textarea {
    width: 100%; /* Full width */
    padding: 12px; /* Some padding */ 
    border: 1px solid #ccc; /* Gray border */
    border-radius: 4px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    margin-top: 6px; /* Add a top margin */
    margin-bottom: 16px; /* Bottom margin */
    resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
  }
  
  /* Style the submit button with a specific background color etc */
  input[type=submit] {
    background-color: #13f8da;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  /* When moving the mouse over the submit button, add a darker green color */
  input[type=submit]:hover {
    background-color: #45a049;
  }
  
  /* Add a background color and some padding around the form */
  .container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
  }

