p{
    margin: 0 0;
}

footer{
    width: 97%;
    padding: 1vh;
    text-align: end;
    background-color: rgb(100, 99, 99);
    color: white;
    font-size: smaller;
}

.yellow{
    color: yellow;
}
.flex{
    display: flex;
    justify-content: center;
    align-items: center;
}
.space-between{
    justify-content: space-between;
}

body {
    font-family: sans-serif;
    background-color: grey;
    margin: 0;
    padding: 0;
    max-width: 590px;
    width: 100%;
    height: 100vh; /* Para ocupar toda la altura visible de la pantalla */
    justify-content: center;
    align-items: center;
    margin: auto; /* Asegura que el cuerpo esté centrado horizontalmente */
}

.wellcome{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1vh;
}
.mx_width{
    width: 100%;  
}

header{
    background-color: white;
    margin: 0px;
    font-size: 1.4vh;
}

.imagen_item{
    width: 100%;
}

.logo_item{
    max-width: 25%;
}

.logo{
    width: 100%;
    height: 8vh;
}

.contact{
    background-color: white;
}

.bottom-border-gray{
    cursor: pointer;
    padding: 1vh;
    width: 97%;
    background-color: white;
    text-decoration: none;
    border-radius: 3vh;
    border: 2px solid gray;
    margin:0.5vh 5px;
    font-size: 1.7vh;
    font-weight: 700;
}



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

    .icon-hidden{
        display: none;
    }
}


