@font-face {
    font-family: 'Unbounded-Medium';
    src: url('../fonts/Unbounded-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NunitoSans-Regular';
    src: url('../fonts/NunitoSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Alice-Regular';
    src: url('../fonts/Alice-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.main {
    min-height: 100vh;
    z-index: 1;
    background-color: #ffffff;

    position: relative;
    display: block;
    /* overflow: auto; */
}

.footer-rounded {
    /* overflow: hidden; */
    border-bottom-right-radius: 64px;
    border-bottom-left-radius: 64px;

    @media (max-width: 600px) {
        border-bottom-right-radius: 32px;
        border-bottom-left-radius: 32px;
    }
}

.footer {
    color: #ffffff;
    background-color: #000000;
    margin-top: -64px;
    padding-top: 140px;
    position: sticky;
    bottom: 0;
    overflow: hidden;
    display: block;
}

.footer a {
    color: #888787 !important;
    transition: color .15s;
    text-decoration: none !important;
}

.footer a:hover {
    color: #ffffff !important;
}

.footer .logo {
    color: #ff8762;
    width: 100%;
    margin-bottom: -4.6vw;
    font-size: calc(15vw - 9px);
    font-family: Unbounded-Medium, sans-serif;
    white-space: nowrap;
    text-align: center;
    line-height: 1;
}

@media (min-width: 1300px) {
    .footer .logo {
        margin-bottom: -62px;
        font-size: 188px;
    }
}

.list {
    list-style: inside;
    list-style-position: outside;
    margin-left: 1.5em;
}

.body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.animated-text {
    font-family: 'Alice-Regular';
    font-size: 1.25em;
    display: inline-block;
    position: relative;
    transition: width 0.3s ease;
}

.word {
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
}

.letter {
    display: inline-block;
}