body {
    background-image: url("../img/cookie.png");
    font-family: Helvetica, sans-serif;
}
/*------------- Start Navigation Menu -------------*/
    /* Basic navigation menu settings */
    .topNav {
        overflow: hidden;
        background-color: #F0F0F0;
        border: 2px solid grey;
        border-radius: 50px;
        font-family: Helvetica, sans-serif;
        height: 50px;
    }

    /* Defines properties of anchors */
    .topNav a{
        background-color: #F0F0F0;
        float: left;
        display: block;
        text-align: center;
        padding: 16px 20px;
        font-size: 18px;
        text-decoration:none;
    }

    /* Hover behavior */
    
    .topNav a:hover
    {
        background-color:#ddd;
        color: black;
    }
    
    /* Active class behavior*/
    .topNav a.active {
        background-color: #2196F3;
        color: white;
    }
    
    /* When the screen is less than 600px wide, stack the links and the search field vertically instead of horizontally */
    @media screen and (max-width: 600px) {
      .topnav a, .topnav input[type=text] {
        float: none;
        display: block;
        text-align: left;
        width: 100%;
        margin: 0;
        padding: 14px;
      }
      .topnav input[type=text] {
        border: 1px solid #ccc;
      }
    }
/*------------- END Navigation Menu -------------*/


/* ------------- iframe behavior ------------- */
iframe{
    color: white;
    background: rgba(10, 10, 10, .7);
    border: 2px solid grey;
    border-radius: 25px;
    margin: 10px;
    width: 70%;
    height: 800px;
}



footer {
    position: fixed;
    height: 50px;
    background-color: white;
    bottom: 0px;
    left: 20px;
    right: 20px;
    margin-bottom: 0px;
    padding-left: 50px;
    border: 0px;
    border-radius: 25px;
}


/* Do not select class*/
.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
        user-select: none; /* Non-prefixed version, currently
                              supported by Chrome, Edge, Opera and Firefox*/
}