@font-face {
        font-family: "Fraunces";
        src: url("Resources/Fonts/fraunces_120pt-light.woff2") format("woff2");
        font-weight: 100;
    }
@font-face {
        font-family: "Avenir";
        src: url("Resources/Fonts/avenir-lt-w01_35-light1475496.woff2") format("woff2");
        font-weight: 100;
    }
    
a{
    text-decoration: none;
    color: inherit;
}

body {
    margin: 0;
    background-color: #f9f2e5;
    color: grey;
    font-family: "Avenir", serif;
    }

header {
    align-items: center;

    position: fixed;
    top: 0px;
    width: 100%;
    height: min(40px, 100%);
    
    padding: 5vh 0vw 5vh 0vw;
    margin: 0 auto;
   
    z-index: 100;
    
    transition: opacity 0.2s linear;
    }

.social {
    margin: 0 1vw;
    padding: 0px;
    font-size: clamp(0.75rem, 1.25vw, 2.5rem);
    transition: color 0.3s ease;
    color: #940025;
    
    
}
.social:hover {
    color: black;
}
a, .social {
    transition: color 0.3s ease;
}

.contact-footer {
    top: 35vh
}

.selected-page {
    color: #940025;
    }
        .button {
            position: relative;
                font-family: "Avenir", serif;
                font-optical-sizing: auto;
                font-weight: 100;
                font-style: normal;
                font-size: inherit;
                text-align: inherit;   
            transition: color 0.3s ease;
            margin: 0vh 0vw;
            width: fit-content;
            height: 100%;
            cursor: pointer;
            }
            
                .button::after {              
                    content: "";
                    position: absolute;
                    left: 0;
                    bottom: -5px;
                    right: 0;
                    width: 0%;
                    background: black;
                    transition: width 0.5s ease;
                }
                    
                        a, button {
                            transition: color 0.3s ease;
                        }
                        .button:hover::after {
                            width: 100%;
                            height: 1px;
                            
                        }                    
            .initials {
                    font-family: "Fraunces", serif;
                    font-optical-sizing: auto;
                    font-weight: 100;
                    font-style: normal;
                    font-size: clamp(0.7rem, 1.1vw, 1.6rem);
                    margin-top: 1.1vh;
                    color: #940025;
                    text-align: center;
                    }
            .links {
                color: #940025;
                opacity: 0.7;
                padding: 0vh 0vw 0vh 0vw;
                font-size: clamp(0.7rem, 1.1vw, 1.6rem);
            }

            
      
footer {
    height: auto;
    list-style: none;
    text-align: center;
    padding: 3vh 0vw 2vh 0vw;
    text-decoration: none; 
    list-style: none;
}
.created-by {
    font-family: "Fraunces", serif;
                    font-optical-sizing: auto;
                    font-weight: 100;
                    font-style: normal;
                    font-size: clamp(0.5rem, 0.8vw, 1rem);
                    color: #940025;
                    text-align: center;
                    margin: 2px;
}

        /* Scroll reveal states: hidden by default, animate once visible */
        .fade-in-fastest,
        .fade-in-fast,
        .fade-in-slow,
        .fade-in-slowest {
            opacity: 1;
            transform: translateY(0px);
        }

        .fade-in-fastest.is-visible {
            animation: fadeIn 0.5s ease forwards;
        }
        .fade-in-fast.is-visible {
            animation: fadeIn 1.5s ease forwards;
        }
        .fade-in-slow.is-visible {
            animation: fadeIn 3.5s ease forwards;
        }
        .fade-in-slowest.is-visible {
            animation: fadeIn 5.5s ease forwards;
        } 
       
            @keyframes fadeIn {
                from {
                    opacity: 0;
                    transform: translateY(10px);}
                to {
                    opacity: 1;
                    transform: translateY(0);}
                }


section {
    width: 100%;
    }
