body{
    /* background-color: rgb(238, 238, 238); */
    background-image: url(../assets/images/bg-4.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    /* position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%; */
}
a{
    text-decoration: none;
}

section{
    margin: 20px auto;
    width: 95%;
    text-align: center;
}

.section-header img{
 width: 250px;
}

.links-container{
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.socials{
    display: flex;
    gap: 15px;
    justify-content: center;
    margin:auto;
    width: fit-content;
}

.link-item{
    /* width: 100%; */
    max-width: 400px;
    background: rgba(255, 255, 255, 0.1);
  
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    background-color: white;
    transition: ease-in-out 0.2s;
    color: rgb(49, 49, 49);
    text-transform: capitalize;
}


.link-item:hover{
    transform: translateY(-5px);
    color: inherit;
    text-decoration: none;
  
}

.link-text {
    margin-left: 10px;
}

.link-icon{
    font-size: 24px;
    transition: 0.3s;
}

.link-item img{
    width: 22px;
    height: 22px;

}

.whatsapp-item{
    color: #25D366;
}

.fa-facebook{
    color: #1877F2;
}

.fa-instagram{
    color: #E1306C;
}

@media screen and (max-width: 768px) {
    .link-item{

        width: 100%;
    }

    .link-text{
        flex-grow: 1;
        text-align: right;
    }
}