body {
    font-family: Arial, Helvetica, sans-serif;
}

.main {
    width: 100%;
    min-height: 100vh;
    background-image: url('./assets/banner.png');
    background-position: center;
    background-size: cover;
}

.main .main__container {
    max-width: 915px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    min-height: inherit;
}

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

.main__container .logo {
    display: block;
    margin: 0 auto;
    padding-top: 50px;
}

.main__container .title {
    margin-top: 60px;
    font-size: 50px;
    text-align: center;
    color: white;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 70px;

}

.main__container .description {
    margin-top: 30px;
    font-family: Arial;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    color: #BDBDBD;
    text-align: center;
}

.bottom {
    padding-top: 50px;
    padding-bottom: 50px;
}

.bottom .info {
    color: white;
    text-align: center;
    font-family: Arial;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
}

.info a {
    color: white;
    text-decoration: none;
}

.social {
    width: 100%;
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: center;
    justify-content: center;
}


* {
    margin: 0;
}