*{
    margin: 0;
    padding: 0;
}
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
}
.nav img {
    width: 100px;
    filter: contrast(1.5);
    margin-right: 25px;
}
.nav .fa {
    display: none;
    color: white;
    font-size: 25px;
    cursor: pointer;
}
.links {
    flex: 1;
    text-align: left;
}
.links ul li {
    list-style-type: none;
    display: inline-block;
    padding: 16px 24px;
    position: relative;
}
.links ul li a{
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 25px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: lighter;
    border: 2px solid transparent;
    padding: 0px 0px;
    transition: 0.5s;
}
.links ul li a:hover{
    transition: 0.5s;
    border: 2px solid white;
    padding: 20px 20px;
}
.header {
    background-image: linear-gradient(270deg, rgba(255, 0, 195, 0.304),  rgba(255, 0, 195, 0.779), rgba(255, 0, 195, 0.864)), url("images/audreyHeader2.png");
    min-height: 745px;
    position: relative;
    background-position: center;
    background-size: cover;
    text-align: left;
    overflow: hidden;
}
.header .greeting{
    font-size: 50px;
    padding-left: 50px;
    padding-top: 100px;
    font-family: sans-serif;
    color: white;
    font-weight: lighter;
}
.header .name {
    font-size: 75px;
    padding-left: 50px;
    font-family: sans-serif;
    color: white;
}
.header .swiper {
    font-size: 50px;
    padding-left: 50px;
    font-family: sans-serif;
    color: white;
    font-weight: lighter;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.header .swiper .swiper-slide h1 {
    font-weight: lighter;
    font-style: italic;
    font-size: 50px;
}
.header .socials {
    display: flex;
    font-size: 40px;
}
.header .socials div {
    padding: 25px;
}
.header .socials i {
    text-decoration: none;
    font-style: normal;
    color: white;
    transition: 0.5s;
}
.header .socials i:hover {
    transform: scale(1.5);
    transition: 0.5s;
}
@media (max-width: 950px) {
    .header {
        background-image: linear-gradient(180deg, rgba(255, 0, 195, 0.382), rgba(255, 0, 195, 0.559), rgb(255, 0, 195)), url("images/audrey.jpeg");
        text-align: center;
        background-position: center;
        background-size: cover;
    }
    .links {
        position: fixed;
        background: rgb(255, 0, 195);
        height: 300px;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 99999;
        transition: 1s;
     
    }
    .fa-times {
        padding: 25px;
    }
    .links ul li {
        display: block;
    }
    .links ul li a {
        color: white;
    }
   .nav .fa {
    display: block;
   }
    .header .greeting {
        padding-left: 0px;
        padding-top: 180px;
        font-size: 25px;
    }
    .header .name {
        padding-left: 0px;
        font-size: 50px;
    }
    .header .swiper {
        padding-left: 0px;
    }
    .header .swiper .swiper-slide h1 {
        font-size: 25px;
    }
    .header .socials {
        padding: 0px;
        align-items: center;
        justify-content: center;
    }
    .links ul li a:hover{
        transition: 0.5s;
        border: 2px solid rgb(255, 0, 195);
        padding: 20px 20px;
    }
}
.about::before {
    min-height: 945px;
    content: "";
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    background-image: linear-gradient(180deg, rgb(255, 0, 195), rgba(255, 0, 195, 0.753), rgba(255, 0, 195, 0.753), rgba(255, 0, 195, 0.753), rgba(255, 0, 195, 0.753)), url("images/flowerLandscape.jpg");
}
.about {
    overflow: hidden;
}
.sectionTitle {
    font-size: 75px;
    color: white;
    text-align: center;
    font-family: sans-serif;
    padding: 50px;
}
.walking {
    width: 600px;
    margin: 25px;
    animation: growing infinite 2s alternate-reverse linear;
}
@keyframes growing {
    0% {
        scale: 1;
    }
    100% {
        scale: 1.1;
    }
}
.music {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin: 25px;
}
.playing {
    width: 300px;
    margin: 25px;
    animation: violin 1s infinite linear alternate-reverse;
}
.music i{
    color: white;
    margin: 25px;
    font-size: 30px;
    animation: music 3s infinite linear;
}
@keyframes violin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(20deg);
    }
}
@keyframes music {
    0% {
        transform: translateX(-40vw);
        opacity: 0%;
    }
    25% {
        opacity: 100%;
    }
    75% {
        opacity: 75%;
    }
    100% {
        transform: translateX(20vw);
        opacity: 0%;
    }
}
.looking {
    width: 600px;
    margin: 25px;
    animation: growing infinite 2s alternate-reverse linear;
}
.logos {
    display: flex;
    margin: 25px;
    align-items: left;
    justify-content: space-between;
    flex-direction: column;
}
.logos img:hover {
    scale: 1.25;
    transition: 0.5s;
}
.logos img {
    transition: 0.5s;
    margin: 25px;
}
.years {
    margin: 25px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.years h1 {
    font-family: sans-serif;
    font-size: 50px;
    color: white;
    text-align: right;
}
.nwcta {
    width: 200px;
}
.hosa {
    width: 400px;
    filter: brightness(10);
}
.yao {
    width: 300px;
}
.strand {
    display: flex;
    align-items: center;
    justify-content: center;
}
.notes {
    width: 500px;
    filter: invert(1);
    margin: 25px;
    animation: growing infinite 2s alternate-reverse linear;
}
.bio {
    display: flex;
    margin: 25px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.textbox {
    border: 2px solid white;
    padding: 20px 20px;
    text-align: left;
    width: 400px;
    height: 400px;
    margin: 25px;
}
.textbox h1 {
    font-family: sans-serif;
    font-size: 50px;
    color: white;
}
.textbox p {
    font-family: sans-serif;
    font-size: 25px;
    color: white;
}
@media (max-width: 1100px) {
    .bio {
        flex-direction: column;
    }
    .sectionTitle {
        font-size: 50px;
    }
    .textbox {
        width: 200px;
        height: 200px;
    }
    .textbox h1 {
        font-size: 25px;
    }
    .textbox p {
        font-size: 15px;
    }
    .walking {
        width: 300px;
    }
    .playing {
        width: 150px;
    }
    .music i {
        font-size: 15px;
    }
    .looking {
        width: 300px;
    }
    .years {
        flex-direction: column;
    }
    .years h1 {
        text-align: center;
        font-size: 25px;
    }
    .nwcta {
        width: 100px;
    }
    .hosa {
        width: 200px;
    }
    .yao {
        width: 150px;
    }
}
html {
    scroll-behavior: smooth;
}
.contact {
    min-height: 100vh;
    background-image: linear-gradient(180deg, rgb(255, 0, 195), rgba(255, 0, 195, 0.753), rgba(255, 0, 195, 0.753), rgba(255, 0, 195, 0.753), rgba(255, 0, 195, 0.753)), url("images/flowerLandscape2.jpg");
    background-position: center;
    background-size: cover;
    overflow: hidden;
}
.bio .socials {
    display: flex;
    font-size: 40px;
}
.bio .socials div {
    padding: 25px;
}
.bio .socials i {
    text-decoration: none;
    font-style: normal;
    color: white;
    transition: 0.5s;
}
.bio .socials i:hover {
    transform: scale(1.5);
    transition: 0.5s;
}
.glasses {
    width: 300px;
    margin: 25px;
    filter: contrast(1.25);
    animation: growing infinite 2s alternate-reverse linear;
}
.copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: white;
    font-family: serif;
}
.credit {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: white;
    font-family: serif;
}
.credit a {
    color: white;
    font-family: serif;
    text-decoration: none;
}
@media(max-width: 950px) {
    .bio .socials {
        padding: 0px;
        align-items: center;
        justify-content: center;
    }
    .glasses {
        width: 200px;
    }
    .copyright, .credit{
        font-size: 15px;
    }
}
.game {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
}
.bruh {
    width: 300px;
    margin: 25px;
}