.social-media-buttons{
    display: flex;
    justify-content: center;
    /* border: 1px solid red; */
    margin: 12vh 0;
}
.btn{
    border: 1px solid black;
    border-radius: 100%;
    height: 60px;
    width: 60px;
    margin: 10px;
    transition: background-color 0.3s;
    }
.ion-icon{
    font-size: 1.7rem;
    color: black;
    margin-top: 5px;
    transition: color 0.3s;
    /* border-radius: 15px; */
}
.btn:hover .ion-icon{
    color: white;
}
.btn:hover {
   background-color: black;
}

@media (max-width:1200px){
    .btn{
        height: 50px;
        width: 50px;
    }
}
@media (max-width:900px){
    .btn{
        height: 40px;
        width: 40px;
    }
    .ion-icon{
        font-size: 20px;
    }
}

.footer-question{
    display: flex;
    justify-content: center;
    font-size: 4rem;
    font-weight: 500;
    color: rgb(21, 21, 21);
    letter-spacing: -4px;
    padding-bottom: 0;
    margin-bottom: 0;
}



.footer{
    /* border: 1px solid red; */
    text-align: center;
    position: relative;
    height: 30vh;
    display: flex;
    justify-content: center;
    overflow: hidden;
}
.hire-me-text{
    color: rgb(233 233 233);
    font-size: 18rem;
    font-weight: 600;
    position: absolute;
    bottom: -50px;
}
.get-in-touch{
    z-index: 5;
    position: relative;
    background-color: #f3f3f3;
    height: 60px;
    border-radius: 35px;
    margin: 40px;
    padding: 15px;
    font-size: 24px;
    font-weight: 500;
    /* font-family: arial; */
    border: 1px solid rgb(35, 35, 35);
    text-transform: uppercase;
    transition: color 0.3s;
    transition: background-color 0.3s;
    transition: ease-out 0.3s;
    overflow: hidden;
}
/* .get-in-touch:hover{
    color: white;
    background-color: black;
} */
.get-in-touch:hover{
    color: white;
}
.get-in-touch::before{
    transform: 0.5s  all ease;
    position: absolute;
    top: 100%;
    bottom: 0;
    right: 0;
    left: 0;
    opacity: 0;
    content: "";
    background-color: black;
}
.get-in-touch:hover:before{
    transition: 0.6s all ease;
    z-index: -1;
    top: 0;
    opacity: 1;
    color: white;
    
}

@media (max-width:1400px){
    .hire-me-text{
        font-size: 16rem;
        bottom: -40px ;
    }
    .footer-question{
        font-size: 3rem;
    }
    .get-in-touch{
        margin-bottom: 40px;
    }
}
@media (max-width:1200px){
    .hire-me-text{
        font-size: 14rem;
        bottom: -35px ;
    }
    .footer-question{
        font-size: 3rem;
    }
    .get-in-touch{
        margin-bottom: 35px;
    }
}
@media (max-width:1050px){
    .hire-me-text{
        font-size: 12rem;
        bottom: -30px ;
    }
    .footer-question{
        font-size: 2rem;
        letter-spacing: -2px;
    }
    .get-in-touch{
        margin-bottom: 30px;
    }
}
@media (max-width:900px){
    .hire-me-text{
        font-size: 10rem;
        bottom: -25px ;
    }
    .footer-question{
        font-size: 2rem;
    }
    .get-in-touch{
        margin-bottom: 25px;
    }
}
@media (max-width:750px){
    .hire-me-text{
        font-size: 8rem;
        bottom: -20px ;
    }
    .footer-question{
        font-size: 2rem;
    }
    .get-in-touch{
        margin-bottom: 15px;
    }
}
@media (max-width:600px){
    .hire-me-text{
        font-size: 6rem;
        bottom: -15px ;
    }
    .footer-question{
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
    .get-in-touch{
        margin-bottom: 10px;
    }
}
@media (max-width:500px){
    .hire-me-text{
        font-size: 5rem;
        bottom: -10px ;
    }
    .footer-question{
        font-size: 1rem;
        letter-spacing: 0;
    }
    .get-in-touch{
        margin-bottom: 5px;
    }
}


