html,
body {
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
font-size: 12pt;
line-height: 2;
}

header {
        background-image: url("../images/Zee.PNG");
        background-size: cover;
        background-repeat: no-repeat;
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        color: darkblue;
}

h1, h2 {
  color: darkblue
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  text-align: center;
}

.flex-row-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;  
}

.textbox {
  width:50%;
  padding: 1%;
  text-align:left;
  border-radius: 25px;
  border-style: solid;
  color: darkblue;
}
.imgbox {
  width: 25%;
  padding: 1%;
}

.links, a {
  text-decoration: none;
  color: darkred;
}

footer {
  margin-top: 25px;
  text-align: center;
  width: 100%;
  bottom: 0px;
  background-color: #abbaba;
  color: #000;
}

.menubox {
  width:100%;
}

/* Links inside the navbar */
.menulink  {
  float: left;
  font-size: 16px;
  color: lightgray;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  border-radius: 25px;
  font-size: 16px;
  border: none;
  outline: none;
  color: darkblue;
  padding: 20px;
  background-color: inherit;
  font: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

.navbar a:hover, .dropdown:hover .dropbtn , .menulink:hover {
  background-color: lightgrey;
  border-radius: 25px;
  border-style: solid;
  color: darkblue
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  width: 10%;
  background-color: #f9f9f9;  
  border-radius: 25px;
  border-style: solid;
  color: darkblue;
  z-index: 1;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Create dropdown items */
.column {
  width: 95%;
  padding: 2%;
}

/* Style links inside the columns */
.column a {
  float: none;
  color:black;
  
  text-decoration: none;
  text-align: left;
  display: block;
}

/* Add a background color on hover */
.column a:hover {
  border-radius: 25px;
  background-color: #ddd;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (max-width: 678px) {

  .center {
      display: block;
      margin-left: auto;
      margin-right: auto;
      width: 50%;
      text-align: center;
    }

    .dropdown-content {
    right: 10px;
    }
header {
  flex-direction: column;
}
    .flex-row-container {
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
      text-align: center;
    }

    .textbox {
      width: 90%;
      margin-left: 3%;
      padding-left: 3%;
    }
    .imgbox {
      width: 90%;
      padding-left: 3%;
    }
    .dropdown-content {
      width: 90%;
      padding-left: 3%;
    }
    h1, h2 {
      width: 100% !important;
    }
  }