#menubar {
    position: absolute;
    top: 50px;
    left: 0px;
    width: 100%;
    height: 100px;
    background: darkgreen;
    /*opacity: 0.75;*/
    z-index: 1;
}

#content {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: white;
    overflow: hidden;
}

#contentTitle {
    position: absolute;
    top: 0px;
    left: 0px;
    min-width: 465px;
    height: 70px;
    background: white;
}

#contentTitleText {
    color: black;
    font-size: 50px;
    font-weight: bold;
    margin-top: 0px;
    margin-left: 10px;
}

#contentDescription {
    position: relative;
    top: 80px;
    left: 0px;
    width: 800px;
    height: 270px;
    min-height: 270px; /* 275px; */
    max-height: 350px;
    background: black;
    opacity: 0.9;
}

#contentDescriptionText {
    position: absolute;
    color: white;
    font-size: 20px;
    text-overflow: scale;
    font-weight: normal;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
}

#contentImage {
    width: 100%;
    height: 100%;
    min-height: 600px;
}

#etvlogo {
    position: absolute;
    width: 180px;
    top: 10px;
    left: 100px;
}

#text {
    position: absolute;
    left: 100px;
    bottom: 150px;
}

html, body {
    overflow: auto;
    /*height: 100%;*/
  }

body {
    margin-top: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
}

html {
    /*height: 100%;*/
  }

p { 
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}

/* Menu bar style */
ul.topnav  {
    position: absolute;
    top: 50px;
    left: 0px;
    width: 100%;    
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    /*background: darkgreen;*/
    opacity: 0.75;
    z-index: 1;
    margin-top: 25px;
}

ul.topnav li {
    float: left;
    margin-left: 300px;

}

ul.topnav li:last-child
{
    right: 0px;
}

ul.topnav li a {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 5px;
    text-decoration: none;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    width: 120px;
}

ul.topnav li a:hover:not(.active) {
    background-color: #007700;
}

ul.topnav li a.active {
    background-color: #4CAF50;
}

ul.topnav li.right {
    float: right;
}

@media screen and (orientation: portrait) {
    #menubar {
        top: 0px;
        left: 0px;
        width: 100%;
        height: 45px;
        opacity: 1;
    }

    #menuopen {
        top: 2px;
        left: 2px;
        width: auto;
        height: 41px;
        position: relative;
        display:block;
    }

    #etvlogo {
        top: 2px;
        height: 41px;
        
        position: absolute;
        width: auto;
        left: calc(50% - 45px);

        opacity: 1;
    }

    #text {
        top: 100px;
        left: 5px;
        width: calc(100% - 10px);
    }

    #contentTitle {
        height: 35px;
        width: 75%;
        min-width: auto;
    }

    #contentTitleText {
        font-size: 25px;
        margin-top: 4px;
    }

    #contentDescription {
        width: 100%;
        top: 45px;
    }

    #contentDescriptionText {
        font-size: 15px;
    }

    ul.topnav {
        visibility: hidden;
    }

    #menu {
        height: calc(100% - 60px);
        width: 0;
        position: absolute;
        z-index: 1;
        top: 0px;
        left: 0;
        background-color: darkgreen;
        overflow-x: hidden;
        transition: 0.5s;
        padding-top: 60px;
        // opacity: 0.75;
    }

    #menu a{
        padding: 8px 8px 8px 32px;
        text-decoration: none;
        font-size: 25px;
        color: #ffffff;
        display: block;
        transition: 0.3s;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }

    #menu a:hover {
        color: #818181;
      }

    #menuclose {
        position: absolute;
        top: 2px;
        right: 2px;
        font-size: 36px;
        margin-left: 50px;
        height: 41px;
    }
}

@media screen and (orientation: landscape) {
    #menuopen {
        visibility: hidden;
    }

    #menuclose {
        visibility: hidden;
    }

}

/*
@media only screen and (max-width: 400px) {

}

@media only screen and (min-width: 401px) and (max-width: 960px) {

}

@media only screen and (min-width: 961px) {

}

@media only screen and (max-width: 970px) {
    ul.topnav {
        background: darkgreen;
        margin-top: 100px;
        margin-left: -200px;
        //display: block;
    }

}

@media only screen and (min-width: 971px) and (max-width: 1500px) {
    ul.topnav {
        margin-top: 0px;
    }
}


@media screen and (orientation: portrait) {
    #text {
        top: 250px;
        bottom: auto;
    }
}

@media screen and (orientation: landscape) and (min-height: 600px) {
    #text {
        // top: 250px;
        // bottom: auto;
        
        top: auto;
        bottom: 150px;
    }
}

@media screen and (orientation: landscape) and (max-height: 599px) {
    #text {
        // top: 250px;
        // bottom: auto;
        
        top: 200px;
        bottom: 10px;
    }
}*/