html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

h1 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    text-align: center;
    color: black;
}

#animation {
    width: 500px;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
}

.text-container {
    width: 100%;
}

.animation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 300px;
    width: 100%;
}

@media screen and (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .container {
        flex-direction: row;
        max-width: 1200px;
        margin: 0 auto;
    }

    .animation-container {
        max-width: unset;
    }
}