*{
    padding: 0;
    margin: 0;
}
html{
    font-size: 14px;
}

body{
    background: black;
    color: white;
}

.font-outfit{
    font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

h1{
    font-size: 4rem;
    font-weight: 100;
    line-height: 110%;
    margin-bottom: 3vh;
}

p{
    font-size: 1rem;
}





.hero{
    min-height: 100vh;
}

.flex{
    display: flex;
}
.flex .child{
    width: 50vw;
    justify-content: center;
    align-items:center
}

.spline-cont{
    height: 50vh;
}

.main-wrapper{
    width: 50vw;
    margin: 0 auto;
}

.main-cta{
    padding: 14px;
    background-color: white;
    color: black;
    text-decoration: none;
    font-weight: 400;
    display: block;
    width: 50%;
    margin-top: 3%;
    margin-bottom: 3%;
}
.hero-text{
    margin-top: -10vh;
}
.hero-p{
    width: 50%;
    padding-bottom: 15vh;
    
}

nav .udon-logo{
    text-align: center;
margin-top: 2.5vw;
}
footer .udon-symbol{
    position: fixed;
    bottom: 3%;
    left: 50%;
}
@media screen and (max-width: 768px) {
    
    .main-wrapper{
        width: 90vw;
    }

}
@media screen and (max-width: 468px) {
    html{
        font-size: 12px;
    }
    .flex {
        display: block;
    }
    .hero-p   {
        padding-top: 3vh;
    }

}