#hm {
    background-color:rgba(0,0,128,0);
    align-items:center;  
    color:white;
    display:grid;
    font-family:'Open Sans';
    grid-template-columns:2fr auto 1fr;
    height:100%;
    padding:0 2em 0 2em;
}


#hm nav {
    display:flex;
    gap:1em;
    justify-content:center;
}


#hm nav a {
    border:1px solid rgba(255,255,255,0.5);
    color:white;
    padding:1em;
    font-size:1em;
    text-decoration:none;
}


#hm  nav a:hover {
    border:1px dotted rgba(255,255,255,0.5);
}


#hm p {
    font-size:1.2em;
    max-width:500px;
    text-align:justify;
}


@media only screen and (max-width:750px) {
    
    #hm p {
        font-size:0.9em;    
    }  

    #hm nav a {
        font-size:0.8em;
    }

}