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

html, body {
    height: 100%;
    scrollbar-color: #d4003b #ccc;
    scrollbar-width: thin;
}

body {
    background-color: #f5f5f5;
    color: #212121;
    font-style: normal;
    font-size: 16px;
    font-weight: normal;
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
}

body::-webkit-scrollbar, html::-webkit-scrollbar{
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 2px;
    left: 5px;
}

body::-webkit-scrollbar-track, html::-webkit-scrollbar-track{
    border-radius: 2px;
}

body::-webkit-scrollbar-thumb, html::-webkit-scrollbar-thumb{
    background-color: #d4003b;
    border-radius: 2px;
}

a {
    color: #000;
    text-decoration: none;
    transition: color 300ms linear 0ms;
}

a:hover {
    color: #d4003b;
}



.logo {
    width: 256px;
    height: 196px;
    max-width: 100%;
    background-image: url("../img/logo.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: block;
}

.uppercase {
    text-transform: uppercase;
}

.container {
    width: 1560px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.main-container {
    height: calc(100vh - 64px);
}

.main-container > .container {
    height: 100%;
}




.main-container .main-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
}

.main-container .main-wrapper .description {
    color: #9e9e9e;
    font-size: 15px;
    font-weight: normal;
    display: block;
    text-align: center;
}



footer {
    height: 64px;
}

footer > .container {
    height: 100%;
}

footer .footer-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .footer-wrapper .social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 24px;
}

footer .footer-wrapper .social > li {
    list-style: none;
}

footer .footer-wrapper .social > li > a {
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .developer {
    display: inline-flex;
    width: 27px;
    height: 24px;
    background-image: url("../img/logo.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}