*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Oswald', sans-serif;
    margin: 0;
    padding: 0;
    width: 100vw;
    background-color: #AA96DA;
    color: white;
}

main {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

header {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

h2 {
    letter-spacing: 1.6px;
    font-size: 3em;
    padding: 0.2em;
    line-height: 1.2em;
    text-align: center;
}

nav.social {
    margin-top: -40px;
    align-self: flex-start;
}

nav.social>a {
    text-decoration: none;
}

nav.social>a>img {
    padding: .5em;
    width: 40px;
}

a.language-change {
    display: inline-block;
    margin-left: auto;
    padding: .5em;
}

.celu>img {
    max-width: 100%;
}

div.texto {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    align-self: center;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.logo>img {
    height: 40px;
    padding-right: 20px;
}

.store-buttons>a {
    text-decoration: none;
}

.store-buttons>a>img {
    height: 40px;
}

footer {
    max-width: 70%;
    padding: 1em;
    background-color: black;
    display: block;
    margin: 0 auto;
}

@media (min-width:830px) {
    main {
        flex-direction: row-reverse;
        padding: 0 2em;
    }

    .celu {
        width: 50%;
    }

    .celu>img {
        max-width: 100%;
    }

}


@media (min-width:1400px) {
    main {
        padding: 0 4em;
    }
}