@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #F8F1F2;
    font-family: 'Host Grotesk', sans-serif;
}

.frontwrapper {
    margin: auto;
    position: fixed;
    inset: 0;    
    width: fit-content;
    height:fit-content;
    max-width: 100vw;
    max-height: 100dvh;
    margin: auto;
}

.center-logo {
    font-size: 12vw;
    font-weight: 400;
    font-style: italic;
    line-height: .75;    
    color: #82A3A1;
    background-color: #F8F1F2;
    padding: 3vw;
}

.center-logo>p>span{
    font-family: "Host Grotesk", sans-serif;
    font-weight: 800;
    color: #2A2B2E;
    font-style: normal;
}

.frontnav {
    list-style: none;
    background: #F8F1F2;
    width: fit-content;
    height: fit-content;
}

.frontnav>li>a {
    font-size: 2.5vw;
    transition: all 0.3s ease 0s;
    padding-left: .75em;
    padding-right: .75em;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    color: #2A2B2E;
}

.frontnav>li>a:hover {
    color: #82A3A1;
}
 
.splash{
    display: block;
    background: url('https://www.blackheartphoto.com/Photo Library/Train Bridge.jpg') no-repeat center center/cover;
    height: 100vh;
}

@media (max-width:35em) {
    .center-logo{
        font-size: 14vw;
    }
    .frontnav>li>a {
        font-size: 8vw;
    }
}