@import url('https://fonts.googleapis.com/css2?family=Merienda:wght@300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans:ital,wght@0,100;0,300;0,400;0,500;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,700;1,800;1,900&family=Manufacturing+Consent&family=Space+Grotesk:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans:ital,wght@0,100;0,300;0,400;0,500;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,700;1,800;1,900&family=Bebas+Neue&family=Manufacturing+Consent&family=Oswald:wght@200..700&family=Space+Grotesk:wght@300..700&display=swap');





* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.site-logo {
   font-family: "Merienda", cursive;
  font-optical-sizing: auto;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.4em;
    text-transform: uppercase;
    line-height: 100px;
}

.navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: 100px;
    position: fixed;
    padding: 0 40px;
    line-height: 100px;
    font-family: "Space Grotesk";
}

.site-menu {
    font-size: 1em;
    display: flex;
}

.menu-item {
    margin-left: 60px;
}

@media(max-width: 900px) {
    .navbar {
        display: none;
    }
}

.header-container {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
}

.header>span {
    font-family: "Alegreya Sans", sans-serif;
    font-weight: 900;
    font-style: italic;
    position: relative;
    font-size: 40vw;
}
.footer{
    width: 100%;
    display: flex;
    justify-content: center;
    position: fixed;
    bottom: 5em;
}
.footer span{
    font-family: "Space Grotesk";
    font-size: 1.4em;
    position: relative;
    font-weight: 400;
    top: 30px;
    transition: 1s;
}
.footer-wrapper::after{
    content: '';
    width: 100%;
    transition: 1s;
    margin: 0 auto;
    height: 100%;
    position: absolute;
    top: 30px;
    left: 0;
    background: white;
}