body{
    background-color: rgb(79, 79, 79);
    color:white;
    margin: 0;
    font-size: 62.5%;
    font-family: 'oswald', 'verdana', 'sans-serif';
}

.grid-container {
    display: grid;
    grid-template-columns: auto auto auto
  }

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(5,50,65);
    height: 15vh;
    border-bottom: 10px solid rgb(7, 70, 80) ;
    position: fixed;
    width: 100vw;
}

.centerDiv{
    display: flex;
    justify-content: center;
}

a{
    text-decoration: none;
}

iframe{
    width: 100%;
}

.dateInput{
    height: 50px;
    color: white;
    text-align: center;
    display: inline-block;
    background-color: rgb(7, 70, 80);
    font-family: 'oswald';
    font-size: 1rem;
}
.averageTypeSelect{
    width: 20vw;
    height: 50px;
    color: white;
    text-align: center;
    display: inline-block;
    background-color: rgb(7, 70, 80);
    font-family: 'oswald';
    font-size: 1rem;
}

.velgIntervallDiv{
    display: grid;
    grid-template-rows: 1fr;
}

.div{
    background-color: rgb(5, 50, 65);
    width: 90%;
    padding: 2.5vw;  
}

.grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
    
}
.title2{
    font-size: 2.5rem;
}

.title3{
    font-size: 1.5rem;
}

table{
    border-collapse: collapse;
    font-size: 1.5rem;
}

th{
    background-color: rgb(7, 70, 80);
}

td{
    padding-right: 1rem;
    padding-left: 1rem;
}

button{
    background-color: rgb(7, 70, 80);
    color: white;
    width: 20vw;
    height: 50px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
}

button:hover {
    transition: .2s;
    background-color: white;
    color: black;
}

.dropdown-content {
    display: none;
    position: absolute;
    min-width: 20vw;
    background-color: rgb(7, 85, 95);
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    
  }
  
  .dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    
    font-size: 1.5rem;
  }
  
  .dropdown-content a:hover {
      background-color: #ddd;
      color: black;
    }
  
  .show {display: block;}

  .menuDiv {
    margin-right: 3vw; 
    width: 30vw
  }
  .menuDiv img:hover {
      background-color: rgb(7, 85, 95);
  }
