/*applied to all pages*/
body {
    margin: 0;
    padding: 0;
    background-color: rgb(104, 124, 104);    
}
h1 {
    font-size: 40px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-align: center;
}
h2 {
    color: white;
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-align: center;
}
h3 {
    color: white;
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-align: center; 
}
p {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 20px;
}

/*MENU*/
#logo img {
    float: left;
    width: 11%;
    position: absolute;
}
#header {
    display: block;
    position: relative;
    width: 100%;
    margin: 5px;
}
.menubar ul{
    list-style: none;
    margin: auto;
    overflow: hidden;
    margin-right: 60px;
}
.menubar a{
    color: white;
    width: 100%;
    display: block;
    text-align: center;
    text-decoration: none;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.menubar li{
    float: right;
    font-size: 20px;
    padding: 27px;
}
.menubar li:hover {
    background-color: #ffffffd9;
    background-color: rgba(13, 9, 9, 0.262);
}

/*INDEXPAGE*/
#indexcontent {
    color: white;
    width: 30%;
    margin-left: 65%;
    margin-top: 6%;
    position: absolute;
    font-family: Georgia, 'Times New Roman', Times, serif;
    background-color: #ffffffd9;
    background-color: rgba(13, 9, 9, 0.262);
    text-align: center;    
    border: 1px solid white;

}
#indexcontent h1 {
    font-size: 70px;
}
#indeximage img {
    width: 100%;
    background-size: cover;
}

/*ABOUT PAGE*/
h1 {
    text-align: center;
    color: white;
    margin: 10px;
    padding: 10px;
}
p {
    text-align: center;
    color: white;
    margin: 10px;
    padding: 10px;
}
#aboutus {
    display: flex;
}
#aboutusimage img {
    flex-basis: 100%;
    width: 85%;
    margin: 15px;
    margin-left: 4%;
    border: 1px solid white;    
    padding: 20px;
} 
#chaska {
    flex-basis: 100%;
    margin: 15px;
    margin-right: 4%;
    padding: 15px;
    background-color: #ffffffd9;
    background-color: rgba(13, 9, 9, 0.262);
}

/*ACTIVITIES*/
section {
    display: flex;
    padding: 5px;
    align-items: flex-start;
    justify-content: space-around;
}
#hiking {
    width: 30%;
    background-color: rgba(13, 9, 9, 0.262);
}
#hiking img {
    width: 100%;
    text-align: center;
}
#canoeing {
    width: 30%;
    background-color: rgba(13, 9, 9, 0.262);
}
#canoeing img {
    width: 100%;
    display: block;
}
#campcraft {
    width: 30%;
    background-color: rgba(13, 9, 9, 0.262);
}
#campcraft img {
    width: 100%;
    display: block;
}

/*CONTACT*/
#mystuff {
    flex-basis: 100%;
    margin: 15px;
    padding: 15px;
    background-color: #ffffffd9;
    background-color: rgba(13, 9, 9, 0.262);
}
form {
    color: white;
    flex-basis: 100%;
    margin: 15px;
    padding: 15px;
    border: 1px solid white;
    text-align: center;
}
form input[type=text] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    font-size: large;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
input[type=submit] {
    width: 100%;
    background-color: rgba(13, 9, 9, 0.262);
    color: white;
    padding: 14px 20px;
    margin: 12px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 25px;
    font-family: inherit;
}
form label{
    font-size: 25px;   
}
#formandcontact {
    display: flex;
}

/*PROGRAMS*/
#both {
    display: flex;
    padding: 10px;
    align-items: flex-start;
    justify-content: space-around;
}
#first {
    width: 45%;
    background-color: rgba(13, 9, 9, 0.262);
}
#first img {
    width: 100%;
}
#second {
    width: 45%;
    background-color: #ffffffd9;
    background-color: rgba(13, 9, 9, 0.262);
}
#second img {
    width: 100%;
}
/*LOCATION*/
#locationcontent {
    display: flex;
    justify-content: space-around;
    align-content: stretch;
    
}
#map {
    flex-basis: 50%;
    margin: 15px;
    border: 1px solid white;
    text-align: center;
}
#map iframe {
    margin: 20px;
    width: 90%;
    height: 90%;
}
#aboutlocation {
    flex-basis: 50%;
    margin: 15px;
    background-color: rgba(13, 9, 9, 0.262);
}

