/* reset rule */
* {
    margin: 0; padding: 0; border: 0; box-sizing: border-box;
}

body {
    background-color: rgb(147, 190, 44);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

ul {
    list-style: none;
}

li {
    margin-bottom: 12px;
}

h2 {
    text-align: center; font-weight: normal;
    margin: 10px 0px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

section#topSection {
    border: 8px solid rgb(0, 72, 139);
    outline: 8px solid white;
    min-height: 400px;
    margin: 50px;
    margin-bottom: -20px;
    display: flex;
}

#textBox {
    background-color: whitesmoke;
    height: 250px; width: calc(50% + 100px);
    transform: translate(100px, 75px);
    margin-left: -50px;
    text-align: center;
    border-radius: 5px;
}

#photoBox {
    background-color: goldenrod;
    height: 400px; width: 50%;
    background-image: url(../images/silverfalls5.jpg);
    background-size: cover;
}

#descBox {
    color: rgb(48, 46, 46);
    margin: 1em; line-height: 1.8;
    text-align: left;
}

#textBox h1 {
    text-align: center; font-weight: normal;
    margin: 12px 0px;
    font-size: 2.2em;
}

#textBox h1 + p {
    color: gray;
    text-align: center; 
    margin: -10px 0px 20px 0px;
    font-size: 1.4em;
}

#textBox p {
    color: rgb(48, 46, 46);
    margin: 1em; line-height: 1.8;
    text-align: left;
}

#textBox a {
    color: white;
}

.buttonLink {
    border: 2px solid yellowgreen;
    padding: 12px 24px;
    text-decoration: none;
    background-color: green;
    border-radius: 5px;
}

section#botSection {
    border: 8px solid white;
    outline: 8px solid rgb(0, 72, 139);
    min-height: 200px;
    width: 50%;
    margin: 50px;
    display: flex;
}

#descBox {
    background-color: whitesmoke;
    height: 150px;
    width: 400px;
    text-align: center;
    border-radius: 100px;
    padding: 10px;
    padding-top: 30px;
    margin-right: 50px;
    float: right;
    
}

#navBox {
    background-color: whitesmoke;
    min-height: 200px;
    width: 500px;
    text-align: center;
    border-radius: 5px;
    padding: 15px;
    margin: 50px;
}

