/*

Site Requirements


Images should change size or visibility based upon size of display
*/
.topnav {
    overflow: hidden;
    background-color: #92461072;
    position: relative;

    display:flex;
    justify-content: space-between;
    padding-right: 10px;
}

.topnav a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 200%;


}
#zom-text{
    display: grid;
    grid-template-areas: auto auto auto auto;
    row-gap: 10px;
    column-gap: 10px;
}
#para1{
    grid-area: 1 / 1;
}
#para2{
    grid-area: 1 / 2;
}


  
@media screen and (max-width: 599px) {
    .topnav a {
      float: none;
      width: 100%;
      font-size: 140%;


      
    }
    

    #logo{
        width: 70px;
    }
    #zom1{
        width: 150px;
    }
    #zom2{
        width: 150px;
    }
    
}


@media screen and (max-width: 1199px){
    .topnav a {
        font-size: 250%;


    }
    .topnav #myLinks{
        margin-top: auto;
        margin-bottom: auto;
    }
    body{
        font-size: 80%;
    }
    #logo{
        width: 80;
    }
    #zom1{
        width: 300px;
    }
    #zom2{
        width: 300px;
    }
}


@media screen and (min-width: 1200px){
    .topnav a{


        font-size: 300%;
    }
    .topnav #myLinks{
        margin-top: auto;
        margin-bottom: auto;
    }
    #zom1{
        width: 400px;
    }
    #zom2{
        width: 400px;
    }


}