*{
    
    outline: none;
    transition: all 0.5s;
    user-select: none;
    
}

body{
    background: var(--blue);
    text-align: center;
    display: block;
}

button{
    width: 90%;
    max-width: 30em;
    height: 4em;
    padding: 0.5em 1em;
    border-radius: 2em;
    position: absolute;
    bottom: 5em;
    left: 50%;
    transform: translateX(-50%);
    border: 0;
    margin-bottom: 0;
    background: rgba(255,255,255,0.4);    
    color: #fff;
    
}
img{
    width: 50%;
    transform: translate(-50%, -50%);
    margin: auto;
    align-content: center;    
    position: absolute;
    top: 50%;
    left: 50%;

}
span{
    position: absolute;
    bottom: 2em;
    left: 0;
    width: 100%;
}
h1, p{
   color: #fff; 
   margin: 0 auto;
   width: 100%;
   font-family: Fonarto;
}
h1{font-size: x-large;}
p{font-weight: lighter; font-size: small;}
a{
    position: absolute;
    bottom: 2em;
    color: whitesmoke !important;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: small;
    text-decoration: dotted underline !important;
    font-weight: lighter;
    left: 50%;
    transform: translateX(-50%);
    display: block;
}
@media screen and (min-width: 720px) {
 img{     
     height: 35%;
     width: auto;
 }
 h1{width: 100%;}
}
@media screen and (orientation: landscape) {
    img{     
        height: 35%;
        width: auto;
    }
    h1{width: 100%; }
   }


   
