*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

a{
    text-decoration: none;
    color: #fff;
}

body{
    background-color: #333;
}

.container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}


.body-mobile{
    display: none;
}

.body-table{
    display: none;
}

.body img{     
    width: 100%;
    cursor: pointer;
}

footer{
    width: 100%;
    justify-content: center;
    align-items: center;
    
}

.icon{
    padding: 2px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;
}

.face{
    background-color: blue;
}

.insta{
    background: linear-gradient(yellow,purple);
}

.whats{
    background-color: rgb(11, 201, 11);
}

.button-icon{
    background-color: #00000050;
    box-shadow: 0 0 10px;
}

.button-icon:hover{
    box-shadow: 0 0 25px;
    border: 6px solid #fff;
}

.icon i{
    font-size: 30px;
    cursor: pointer;
}

.area-rede-social{
    width: 100%;
    display: flex;
    justify-content: center;
    position: fixed;
    bottom: 0;
    padding: 10px;
    gap: 20px;
}

@media screen and (max-width:1025px) {

    .body{
        display: none;
    }

    .body-table{
        display: flex;
        justify-content: center;
        width: 50%;
        height: 100%;
    }

    .body-table img{
        width: 100%;
    }

    
    .icon-area{
        width: 100%;
        flex-direction: row;
        border-radius: 0;
    }

}

@media screen and (max-width:539px) {


    .body-table{
        display: none;
    }
    
    
    footer{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .icon-area{
        width: 100%;
        flex-direction: row;
        justify-content: space-around;
        border-radius: 0;
    }

    .body-mobile{
        display: flex;
        
    }

    .body-mobile img{
        width: 100%;        
        background-position: center;
    }

    footer{
        position: relative;
        flex-direction: row;
    }

}
