body {
    background: linear-gradient(90deg, rgba(75,123,161,1) 0%, rgba(172,178,183,1) 45%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-family: "DM Sans", sans-serif;
}

.content {
    padding: 20px 20px;
    width: 100%;
    text-align: center;
}

.content__logo img {
    max-width: 400px;
    height: auto;
}

.content__title {
    display: block;
    margin: 50px 0;
    font-size: 70px;
    line-height: 1.2;
    font-weight: 700;
    color: #000000;
}

.content__list {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.content__list a {
    display: block;
}

.content__list img {
    width: auto;
    height: 60px;
}

.content__list li {
    margin-right: 20px;
}

.content__list li:last-child {
    margin-right: 0;
}

.content_mail {
    display: block;
    margin-top: 50px;
    font-weight: 700;
    font-size: 50px;
    line-height: 1.2;
    color: #000000;
}

@media (max-width: 991px) {
    .content__logo img {
        max-width: 200px;
        height: auto;
    }

    .content__title {
        margin: 30px 0;
        font-size: 30px;
    }
    
    .content_mail {
        margin-top: 30px;
        font-size: 25px;
    }

    .content__list img {
        width: auto;
        height: 40px;
    }

    body {
        min-height: 100%;
        height: 100vh;
        overflow: hidden;
    }
}