html{
    background-image: url(/wp/fondo01.png);
    background-repeat:repeat-y;
    background-size:100%;
    
}


header{
    background-color: rgba(255,255,255,30%) ;
   /* background-color: transparent;*/
   /* opacity: 30%;*/
    display: flex;
    align-items: center;
    padding: 2%;
    display: flex;
    justify-content: center;
}

.logo{
    width:25%;
      /*box-shadow: 2px 2px white;*/
}

.saludo{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 3em;
    color:black;
    font-weight: bold;
    background-color: rgba(255,255,255,70%);
    text-shadow: 2px white;
    text-align: center;
}

.const{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 3em;
    color:crimson;
    font-weight: bold;
    transition: 4ms;
    text-align: center;
    background-color: rgba(255,255,255,70%);
}

.const:hover{
    scale: 1.5;
    color: red; 
    background-color: rgba(255,255,255,100%);
    cursor:pointer;
}

footer{
    height: 400px;
    display:flex;
    align-items: flex-end;
    justify-content: center;
    color:white;
    font-weight: bold;
}

@media screen and (max-width:480px) {
    
    .logo{
        width: 60%;
    }
    .saludo, .const{
        text-size: 2em;
    }
    
}


