img.ocean {
    max-width: 120px;
    height: auto;
}

header{
    font-size: 10px;
}
body {
    padding: 25px;
    background-color: black;
    color: white;
    font-size: 12px;
  }
  
  .dark-mode {
    background-color: black;
    color: white;
  }
  .light-mode {
    background-color: white;
    color: black;
  }
  .row{clear:both}
  .rowifmobile{clear:both}

.column{
    width: 50%;
    float: left;
}
.fullcolumn{
  float: left;
}
.dropbtn {
    background-color: #4CAF50;
    color: white;
    padding: 12px;
    font-size: 16px;
    border: none;
    cursor: pointer;
  }
  
  .dropdown {
    position: relative;
    display: inline-block;
    background-color: white;
  }
  
  
  .dropdown-content {
    background-color: white;
    display: none;
    position: absolute;
    width: 100%;
    overflow: auto;
    box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.4);
  }
  .dropdown:hover .dropdown-content {
    display: block;
    z-index: 1;
  }
  .dropdown-content a {
    display: block;
    color: #000000;
    background-color: white;
    padding: 5px;
    text-decoration: none;
    z-index: 1;
  }
  .dropdown-content a:hover {
    color: #FFFFFF;
    background-color: #00A4BD;
  }

  
  .button {
border: none;
color: white;
padding: 6px 6px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 12px;
margin: 1px 1px;
cursor: pointer;
background-color: #4CAF50;
border-radius: 12px;
}