body {
    font-family: 'Anybody', 'Courier New', Courier, monospace;
}

section {
    /* height: 500px; */
    background-color: white;
    /* border: solid darkolivegreen .5px; */
}

.sub-section {
    display: flex;
    flex-direction: row;
    /* flex-wrap: wrap-reverse; */
    /* justify-content: space-around; */
    font-family: 'Anybody', 'Courier New', Courier, monospace;
    font-size: 25px;
    padding: 0;
}

.sub-section-alternative {
    display: flex;
    flex-direction: column;
    text-align: center;
    /* padding: 10px; */
}

.header {
    background-color: #738965;
    height: 100vh;
    color: white;
    font-size: 40px;
}

footer {
    background-color: rgba(15, 117, 37, 0.53);
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 10px;
}

.contact-header {
    margin-top: 5px;
}

nav {
    display: flex;
    justify-content: space-between;
    font-family: 'Anybody', 'Courier New', Courier, monospace;
}

ul {
    display: flex;
    list-style-type: none; /* removes bullet points */
    width: 500px;
    justify-content: space-around;
    font-size: 20px;
}

li {
    text-decoration: none;
}

h1 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 100px;
    margin-bottom: 0px;
}

h2 {
    font-size: 40px;
    font-family: 'Anybody', 'Courier New', Courier, monospace;
    margin-bottom: 10px;
}

h3 {
    font-size: 30px;
    margin-top: 0px;
}

/* p {
    margin: 0;
    font-size: 30px;
    font-weight: 300;
} */

.subtext {
    font-size: 20px;
    font-weight: 300;
}

.header-area {
    display: flex; /* to display in the center, no matter what browser we are in */
    flex-direction: column;
    height: 100%; /* of whatever parent div it's in */
    justify-content: center;
}

.header-text {
    margin-left: 60px;
    font-weight: 800px;
    margin-bottom: 130px;
}

.header-paragraph {
    font-family: 'Anybody', sans-serif;
    font-size: 35px;
    margin-top: 10px;
}

.button {
    background-color: #cfb0a7;
    font-family: 'Times New Roman', Times, serif;
    width: 225px;
    height: 45px;
    text-align: center;
    font-size: 27px;
    font-weight: 300px;
    padding-top: 10px;
    border-radius: 30px;
}

.button:hover {
    background-color: coral;
    color: white;
}

.button:active {
    background-color: lightcoral;
    color: whitesmoke;
}

.socials {
    padding-top: 10px;
}

.logo {
    height: 70px;
    margin: 5px;
}

.information {
    display: flex;
    /* padding: 30px; */
    margin: 30px;
}

.headshot-image{
    width: 300px;
    border-radius: 150px;
    border: dotted #316b39 5px;
    margin-left: 10px;
}

.headshot-container {
    display: flex;
    /* flex-wrap: right; */
    align-items: center;
}

.photo-card {
    width: 300px;
    height: 500px;
    box-shadow: 5px 5px 20px rgb(130, 138, 119);
    margin: 10px;
    margin-top: 20px;
}

.photo-container {
    font-family: 'Nanum Pen Script', 'Courier New', Courier, monospace;
    font-size: 20px;
    display: flex;
    justify-content: space-around;
}

@media only screen and (max-width: 1000px) { /* will wrap if under 1000px */
    .photo-container {
        display: flex;
        flex-wrap: wrap;
    }    
}

.photo-image {
    width: 250px;
    border-radius: 7px;
    margin: 25px;
    margin-bottom: 5px;
}

.view-button {
    color: #2e7c39;
    text-decoration: none;
}

.view-button:hover {
    color: coral
}

.view-button:active {
    color:rgb(130, 138, 119)
}

/* hr {
    margin-left: 20px;
    margin-right: 20px;
} */

a {
    text-decoration: none;
    color: white;
}

a:hover {
    color: coral;
}

a:active {
    color: black;
}

.youtube-video {
    color: blue;
}

.youtube-video:hover {
    color: coral;
}

.youtube-video:active {
    color: grey;
}

.youtube-embed {
    display: flex; /* to display in the center, no matter what browser we are in */
    justify-content: center;
    align-self: auto;
}

.hamburger {
    display: none;
}

.hamburger:focus {
    outline: 0;
}

.social-bio {
    color: blue;
}

@media only screen and (max-width: 1000px) {
        .hamburger {
            display: block;
            border: 0;
            background-color: transparent;
            color: white;
            font-size: 30px;
            margin: 20px;
            align-self: flex-end;
        }

        ul {
            display: none;
            background-color: #a0b990;
            margin: 0px;
        }

        ul.show {
            display: block;
        }

        nav {
            display: flex;
            flex-direction: column-reverse;
            background-color: #a0b990;
        }

        .logo {
            display: none;
        }
}

#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: green; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
  }
  
  #myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
  }