* {
    padding: 0;
    margin: 0;
}

html {
    background-color: rgb(52, 52, 53);
}

.info {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    padding: 40px 30px;

    max-width: 700px;
    width: 60%;

    background-color: black;
    color: azure;
    border: solid blanchedalmond;

    font-family: sans-serif;
    text-align: center;

    transition-duration: 650ms;
    transition-delay: 200ms;
}

.info:hover {
    background-color: rgb(10, 10, 10);
    width: 60%;
    padding: 50px 40px;
}

.info h3 {
    font-weight: 500;
}

.social {
    margin-top: 15px;
    filter: invert(100%);
}

.social img {
    padding: 0px 5px;
    width: 40px;
    /*
    transition-delay: 100ms;
    transition-duration: 450ms;
    */
}

/*
.social img:hover{
    width: 50px;
}
*/