@import url(https://fonts.googleapis.com/css2?family=Lusitana);

* {
    font-family: 'Lusitana', Georgia, serif;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
hr {
    color: rgb(90,90,90);
    height: 2%;
    width: 100%;
}
body {
    background-color: white;
    color: rgb(90,90,90);
    width: 100%;
    height: 100vh;
    margin: 0;
    overflow-x: hidden;
    font-size: 18px;
}
.pageButton {
    border-radius: 0;
    background-color: rgb(255,255,255);
    padding: 1% 4%;
    border: none;
    color: rgb(0,0,0);
    font-size: large;
    border: 1px solid;
    margin: 1%;
    box-shadow: 5px 5px 0px black;
    transition: box-shadow 0.5s ease-in-out;
}

.pageButton:hover {
    background-color: rgb(242,242,242);
    box-shadow: 6px 6px 0px black;
    cursor: pointer;
}

@media (max-width: 500px) {
    #banner {
        padding: 15% 0 0 0 ;
        color: whitesmoke;
    }
}

.wrapper {
    width: 100%;
    background-color: #679E6C;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#name {
    font-size: 1.5em;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 0;
}

.navbar-ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-list {
    margin-left: 20px;
}

.nav-list a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #F5EB90;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: flex-start;
    }
    .navbar-ul {
        flex-direction: column;
        width: 100%;
    }
    .nav-list {
        margin: 10px 0;
    }
}

.headshot {
    width: auto;
    height: 250px;
    border: 10px solid #A69880;
    border-radius: 20px;
    box-shadow: 0 0 15px #F5EB90;
}

.button-container {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding-left: 40px;
}

.buttons {
    background-color: #679E6C;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buttons:hover {
    background-color: #246229;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}