#container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;

    height: 100%;
}

main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 1.875rem;

    width: 80%;
    max-width: 112.5rem;

    margin: 0 auto;
}

.wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.wrapper + .otto {
    align-items: center;
    justify-content: center;
}

#title-and-description-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

h1 {
    color: #252935;
    font-size: 2.25rem;
    line-height: 2.75rem;
    font-weight: 700;
}

p {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.primary-link {
    width: fit-content;
}

#otto-container {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 25rem;
    height: 25rem;

    background-color: #ffffff;

    border-radius: 50%;
}

@media (max-width: 75rem /* 1200 */) {
    main {
        width: 100%;

        padding: 0 1.25rem;
    }
}

@media (max-width: 56.25rem /* 900px */) {
    header-container {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }

    main {
        padding-top: 6.625rem;
    }
}

@media (max-width: 50rem /* 800px */) {
    main {
        grid-template-columns: 1fr;
        grid-template-areas: "otto" "content";
    }

    .wrapper:first-of-type {
        grid-area: content;
    }

    .wrapper:last-of-type {
        grid-area: otto;
    }

    .wrapper {
        align-items: center;
    }

    #otto-container {
        width: fit-content;
        height: fit-content;

        background-color: rgba(0, 0, 0, 0);
    }

    #otto-container img {
        height: 9.375rem;
    }

    a {
        margin-bottom: 2rem;
    }

    h1 {
        font-size: 1.25rem;
        line-height: 1.875rem;
        font-weight: 600;

        text-align: center;
    }

    p {
        font-size: 0.875rem;
        line-height: 1.25rem;

        text-align: center;
    }
}
