#contacts{
    width: 90vw;
    box-sizing: border-box;
    padding: 25px 25px 50px 25px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 25px;
    border: 2px solid #444444;
    border-radius: 1rem 0.25rem 1rem 0.25rem;
    background: rgba(34, 34, 34, 0.75);
}

#contacts span{
    margin-top: -40px;
    font-size: larger;
    padding: 5px;
    background: #111111;
    text-align: center;
    border: 2px solid #444444;
    border-radius: 0.5rem 0.25rem 0.5rem 0.25rem;
}

#contacts span p{
    padding: 0 10px 0 10px;
}

#contacts span p, #contacts p{
    background: linear-gradient(to right, white, grey, brown);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#contacts span p:hover, #contacts p:hover{
    background: linear-gradient(to right, skyblue, crimson);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#contacts a img{
    transition: filter 0.4s ease;
    filter: contrast(0.4);
}

#contacts a img:hover{
    filter: contrast(0) invert(1);
}

@media only screen and (min-width: 320px){
    #contacts p{
        font-size: larger;
    }
}

#contactHTML{
    display: flex;
}

#contactHtmlH1{
    margin-top: 125px;
    position: fixed;
    transition: all 0.4s ease;
}

#contactHtml > section{
    border: 2px solid #333333;
    border-radius: 1.3rem;
    background: rgba(51, 51, 51, 0.5);
    width: 80%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 50px;
}

#contactHtml > section  a{
    all: unset;
    width: 100%;
    height: 100%;
    cursor: pointer;
    padding: 10px;
    display: flex;
    justify-content: space-around;
}

#contactHtml > section img{
    width: 50px;
}

#contactHtml > section p{
    height: min-content;
    color: white;
    align-self: center;
    font-size: large;
}

.socials.hide{
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.4s ease;
}

.socials.show{
    opacity: 1;
    transform: translateY(0px);
    transition: all 0.4s ease;
}

#contactHtml > section:hover{
    background: rgba(68, 68, 68, 0.5);
}

@media only screen and (min-width: 768px){
    #contactHtml{
        width: 60vw;
        flex-direction: column;
        margin-top: 313px !important;
    }
    .socials{
        min-width: 100% !important;
        min-height: 75px !important;
    }
    #contactHtmlH1{
        margin-top: 200px;
        font-size: xx-large;
    }
}

@media only screen and (min-width: 1024px){
    #contactHtml{
        width: 31vw;
    }
}