.page {
    padding: 0 20%;
}

menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
}

.menu-item {
    list-style: none;
}

.menu-item a {
    text-decoration: none;
    color: black;
    font-size: 1.0em;
    min-width: 4em;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2em;
    font-weight: 550;
}

.menu-item a:hover {
    color: #C3A076;
    transition: all 300ms;
}

.main-page {
    height: 100vh;
}

.content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 100%;
    align-items: center;
}

.info {
    display: flex;
    flex-direction: column;
}

.info h1 {
    font-size: 2em;
}

.info span {
    font-size: 1.1em;
    font-weight: 400;
    margin-top: -0.5em;
}

.download {
    margin-top: 2em;
}

.download img {
    height: 50px;
    width: auto;
}

.content-page {
    background-color: #F8E7D3;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.content-page section span {
    font-size: 1.2em;
    line-height: 150%;
}

footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    background-color: white;
}

footer section span {
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.9em;
}

.footer-download {
    height: 36px;
}

a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.9em;
}

@media (max-width: 1024px) {
    .page {
        padding: 0 6%;
    }

    .main-page {
        height: 100vh;
        overflow-y: hidden;
    }

    .content {
        display: flex;
        flex-direction: column;
        align-items: center;
        
    }

    .screenshot {
        width: 88%;
        height: auto;
    }

    .info {
        margin-bottom: 32px;
    }

    .info h1 {
        font-size: 1.5em;
        line-height: 125%;
    }

    .info span {
        font-size: 0.9em;
        font-weight: 400;
        margin-top: -0.5em;
    }

    .download {
        align-self: center;
    }

    .download img {
        height: 42px;
        width: auto;
    }

    menu {
        height: 42px;
    }

    .menu-item {
        margin: 0;
    }

    .menu-item a {
        font-size: 0.9em;
        min-width: 4em;
        min-height: 2em;
    }

    .content-page {
        flex-direction: column;
    }

    .content-page section {
        width: 100%;
        margin-top: 2em;
        margin-bottom: 3em;
    }

    .content-page section h2 {
        font-size: 1.5em;
    }

    .content-page img {
        width: 80%;
        height: auto;
        margin-bottom: 2em;
    }

    .footer-download {
        height: 32px;
    }

    .logo {
        width: 48px;
    }

    footer section span {
        font-size: 0.8em;
    }

    footer {
        min-height: 80px;
    }
}

@media (min-width: 1025px) {
    .screenshot {
        height: 70%;
        width: auto;
        transform: rotate(10deg);
        margin-bottom: 60px;
    }

    .info {
        margin-bottom: 120px;
    }

    menu {
        height: 56px;
        margin-right: 1em;
    }

    .menu-item {
        margin: 0 1em;
    }

    .menu-item a {
        font-size: 1.0em;
        min-width: 4em;
        min-height: 2em;
    }

    .content-page {
        height: 100vh;
    }

    .content-page section {
        width: 60%;
    }

    .content-page section h2 {
        font-size: 2em;
    }

    .content-page img {
        height: 70%;
    }

    .logo {
        width: 56px;
    }

    footer {
        min-height: 120px;
    }
}