* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --max-width: 600px;
}

a {
    text-decoration: none;
}

header,
section,
footer {
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 1.5rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header a {
    margin-right: 1.5rem;
}

header a img {
    height: 2rem;
}

header a:last-child {
    margin-right: 0;
}

section {
    background-color: #f5c482;
}

section .header-picture {
    width: 100%;
}

section .content {
    width: 100%;
    background: url(../images/background.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    text-align: center;
    margin-top: -2.8rem;
}

section .content .content-picture {
    width: 90%;
    padding-top: 1rem;
    padding-bottom: 10rem;
}

footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 1rem;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    background: linear-gradient(to bottom,#ff4c4c, #ff0202);
}

footer .logo-setup {
    display: flex;
    justify-content: center;
    padding-bottom: 1rem;
}

footer .logo-setup .logo {
    margin-right: 0.5rem;
}

footer .logo-setup .logo img {
    height: 3.2rem;
}

footer .logo-setup .setup-container p:first-child{
    font-size: 20px;
    font-weight: bold;
    color: white;
}

footer .logo-setup .setup-container p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

footer .application {
    display: flex;
    align-items: center;
    padding-bottom: 0.5rem;
}

footer .application a {
    display: block;
    text-align: center;
}

footer .application a img {
    width: 90%;
}

.spinner-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
}

.spinner {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 9px solid;
    border-color: rgba(0, 0, 0, 0.5);
    border-right-color: #ff2827;
    -webkit-animation: spinner-zp9dbg 1s infinite linear;
    animation: spinner-zp9dbg 1s infinite linear;
}

@-webkit-keyframes spinner-zp9dbg {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

@keyframes spinner-zp9dbg {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

@media screen and (max-width: 768px) { 
    body {
        background-color: #f5c482;
    }
    header {
        padding: 1rem;
    }

    header a {
        margin-right: 0.5rem;
    }

    header a img {
        width: 100%;
        height: unset;
    }

    footer .logo-setup .setup-container p:first-child{
        font-size: 18px;
    }

    footer .logo-setup .setup-container p {
        font-size: 14px;
    }
}