body {
    height: 100vh;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background-color: #4b4b4d;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.info {
    color: #fff;
    margin-bottom: 25px;
}

.info h2 {
    color: #eee;
    font-size: 25px;
}

.info a {
    color: #eee;
    font-size: 16px;
}



.logo {
    max-width: 100%;
    width: auto;
    height: 200px;
    border-radius: 99px;
    object-fit: contain;
}


.social-media {
    display: flex;
    flex-direction: row;
    gap: 2em;
}

.social-media .icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.social-media .icon .img-icon {
    width: 32px;
    height: 32px;
    filter: invert(100);
    border: 1px solid #212121;
    padding: 15px;
    margin-bottom: 15px;
}

.social-media .icon a {
    color: #EEE;
    text-decoration: none;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .info h2 {
        font-size: 18px;
    }

    .info a {
        font-size: 14px;
    }

    .social-media {
        flex-direction: column;
    }

    .social-media .icon .img-icon {
        width: 25px;
        height: 25px;
    }

    .social-media .icon a {
        font-size: 13px;
    }
}