

/*510 px , 511 px */
@media only screen and (max-width: 920px) {

    /*
header {
   align-items: space-around; 
}

*/
.navicon {
    display: flex;
    justify-content: center;

    /*
    align-content: center;
    align-items: center;
    justify-items: center;
    */

    /*margin-top: 30px;*/
    isolation: isolate; /*This, in combination with onclick="" on class, gets around Safari long click behavior*/
}

.navicon > span {
    display: block;
    background-color: whitesmoke;
    width: 20px;
    height: 1px;
    margin: 10px;
    padding: 100px;

    
}

header > h1 {
   text-align: center;

}

header, #placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: space-evenly;
}

}

/*********************/



html{
    background-color: #eeeeee;
    margin: 0; 
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: visible;

}

a {
 text-decoration: none;
}



header{ 
    background-color: #002855;
    color: #d3d3d3 ; 
    /*display: flex;
    align-content: center;    
    justify-items: center;
    align-items: center;
    justify-content: space-evenly;
    position: relative;
    top: -20px;
    left: 0px; 
    right: 0px;*/
    display: grid;
    columns: 1fr 4fr 1fr;
    }


header > h1 {
    grid-column: 2;
    justify-content: center;
    align-content: center;
    justify-items: center;
    align-items: center;
   /* text-align: center; */
}


header > button{
    background-color: #EAAA00;
    color: black; 
    font-weight: bold;

    display: flex; 
    justify-content: center;
    align-content: center;
    justify-items: center;
    align-items: center;
       /**/
    grid-column: 3;
    /**/
}


.navicon > span {
    display: block;
    background-color: whitesmoke;
    width: 20px;
    height: 1px;
    margin: 3px;
    padding: 1px;
       /**/
    grid-column: 1;
    /**/
}

.navicon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 5%;
/**/
    grid-column: 1;
/**/
}

.navicon:hover > span {
    display: none;
}
.navicon:hover .navmenu{
    display: block;
    display: flex;
    flex-direction: column;
       /**/
    grid-column: 1;
    /**/
}

.navmenu {
    display: none;
}

.navmenu > a {
     color: #d3d3d3;
}

.text {
    display: flex;
    justify-content: center;
    text-align: center;
}

#wrapper {
    display: flex;
    justify-content: center;
    padding: 0;
    
}

#placeholder {
    display: flex;
    justify-content: space-evenly;
    align-content: space-evenly;
    padding: 0;
}

#placeholder img{
    background-color: #EAAA00;
    max-width: 50%;
    max-height: 100%;

}

iframe {
    width: 100vw;
    height: 100vh;
    min-width: 75vw;
    min-height: 75vh;
    border: 0;
    padding: 10;
   
}
 #placeholder p{
    margin: 5%;
    font-size: 20;
  max-width: 60ch;
 }

/*
#wrapper div {
    margin-left: 200px; 
}
*/


#blog {

    display: flex; 
    flex-direction: column;
    justify-content: center;
    
}
#blog > div > p {
    max-width: 60ch;
}

.contactinfo {
    align-items: center;    
}

.contactinfo > p {
    font-size: 16;
    max-width: 60ch;
    color: grey;
    text-align: center;
}

footer {
    background-color: #002855;
    color: #d3d3d3 ; 
    display: flex;
    align-content: center; 
    align-items: center;
    justify-content: space-evenly; 
}
