:root {
    --main-color: #222B44;
}


body {
    padding: 0;
    margin: 0;
    background-color: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    font-family: sans-serif;
}

p {
    font-size: 1em;
}

h1 {
    text-align: center;
    font-size: 2em;
}

h2 {
    text-align: center;
    font-size: 1.5em;
}

h3 {
    text-align: center;
    font-size: 1.2em;
}

.content {
    margin: 0 auto;
    padding: 0 2em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    margin-bottom: 2em;
}

.logo img {
    max-width: 100%;
    width: 30em;
    height: auto;
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    margin: 0;
    flex-grow: 1;
    padding: 40px 0;
}

.store-button {
    display: flex;
    align-items: center;
}

.store-button img {
    display: block;
    height: 50px;
    width: auto;
}

.description {
    max-width: 30em;
    font-weight: normal;
    color: #FFF;
    font-size: 1.1em;
    line-height: 1.5em;
    text-align: justify;
    word-break: break-word;
}

.platforms {
    margin: 1em;
    font-weight: normal;
    color: #FFF;
    font-size: 1.5em;
    letter-spacing: 0.05em;
    font-family: sans-serif;
    /*display: flex;*/
    align-items: center;
    align-content: center;
    text-align: center;
}

.platforms img {
    max-width: 100%;
    width: auto;
    height: 2em;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    color: black;
    text-align: center;
    padding: 2em 0;
}

.footer a {
    color: white;
    margin: 2em;
    padding: 1em 2em;
    background-color: var(--main-color);
}
