@import url('https://fonts.googleapis.com/css2?family=Water+Brush&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100&display=swap');

body{
    background-color: lightskyblue;

}
/* confuig de las letras, tamaño, color, etc. mi nombre "gonzalo la torre" */
h1{
    color:rgb(0, 0, 0);
    font-family: 'Water Brush', cursive;   
    font-size: 50px;
}

main{
    display:flex;
    flex-direction: row ;
    align-items: center; 
    justify-content: space-evenly;
    margin: auto;
    flex-wrap: nowrap;
}
/* config de la img */
.img{
    display: flex;
    margin-left: 5%;
    width: 25%;
}
/* tamaño del parrafo de presentación */
.texto{
    width: 60%;
    font-size: 2vmax;
}
p{
    color: white;
    font-weight: bolder;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 30px;
    display:flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.inicio{
    display:flex;
    flex-direction: row;
    justify-content: space-around; 
    align-items: center;
    
}
/* preferencias para la cabezera de pagina */
.cabeza{
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
/* preferencias para el pie de la pagina */
footer{
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    width: 100%;

}

/* botones */
button {
    position: relative;
    height: 45px;
    padding: 0 10px;
    border: 2px solid #000;
    background: #e8e8e8;
    user-select: none;
    white-space: nowrap;
    transition: all .05s linear;
    font-family: inherit;
   }
   
   button:before, button:after {
    content: "";
    position: absolute;
    background: #e8e8e8;
    transition: all .2s linear;
   }
   
   button:before {
    width: calc(100% + 6px);
    height: calc(100% - 16px);
    top: 8px;
    left: -3px;
   }
   
   button:after {
    width: calc(100% - 16px);
    height: calc(100% + 6px);
    top: -3px;
    left: 8px;
   }
   
   button:hover {
    cursor: crosshair;
   }
   
   button:active {
    transform: scale(0.95);
   }
   
   button:hover:before {
    height: calc(100% - 32px);
    top: 16px;
   }
   
   button:hover:after {
    width: calc(100% - 32px);
    left: 16px;
   }
   
   button span {
    font-size: 15px;
    z-index: 3;
    position: relative;
    font-weight: 600;
   }
