@font-face {
    font-family: 'Sora';
    src: url('Sora-VariableFont_wght.ttf');
}

html {
    scroll-snap-type: y mandatory;
    scroll-snap-stop: always;
    background: #F4F1EB;
}
body {
    font-family: Sora, Helvetica, Arial, sans-serif;
}
section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    scroll-snap-align: center;
}

.container {
    width: 100vh;
    height: 80vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F4F1EB;
}
.content {
    justify-content: center;
    align-items: center;
    text-align: center;
}

h1 {
    font-size: 5em;
    font-weight: 700;
}
h2 {
    font-size: 4.5em;
    font-weight: 700;
}
h3 {
    font-size: 3em;
    font-weight: 400;
}
h4 {
    font-size: 2.5em;
    font-weight: 400;
    margin-top: 1em;
    margin-bottom: 1em;
}


a {
    color: #3366cc;
    text-decoration: none;
    transition: color 0.5s;
}
a:hover {
    color: #ff6600;
}


