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

body {
    background: #0E1621;
    color: #B6B6B6;
    font-family: "Comic Sans MS", sans-serif;
}
button {
    background: none;
    border: none;
    outline: none;
    color: white;
}

.wrapper_content-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.block {
    margin-top: 100px;
    width: 941px;
    height: auto;
    background: #121821;
    border: 1px solid #17212B;
    border-radius: 22px;
    transition: all 0.3s;
}

.content h1 {
    text-align: center;
    margin: 40px 0;
    transition: all 0.3s;
}

.content p {
    display: block;
    text-align: center;
    margin: 0px 40px;
    font-family: "Roboto Light", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: rgba(182, 182, 182, 0.85);
    transition: all 0.3s;
}

.wrapper-social {
    margin: 82px 0 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding: 2px;
    transition: all 0.3s;
}

.social {
    font-style: normal;
    font-weight: 400;
    font-size: 21px;
    line-height: 25px;
    transition: 0.4s;
}

.social:nth-child(2n+1) {
    color: #21EBD4;
}

.social:hover {
    transform: translateY(-10px);
    transition: 0.4s;
}

@media (min-width: 100px) and (max-width: 1110px) {
    .block {
        width: 95%!important;
        margin: 30px 40px;
        transition: all 0.3s;
    }
    .social {
        margin-left: 11px;
        margin-bottom: 20px;
        margin-right: 20px;
        transition: all 0.3s;
    }
}