/*font*/
body {
  font-family: 'Do Hyeon';font-size: 22px;
  background-color: #53CBF3;
  margin: 0;
  
}

/*image*/
.center {
  display: block;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  width: auto;
}

/*navigator*/

.topnav {
  overflow:hidden;
  background-color: #F9F2ED;
}

.topnav a {
  float: left;
  display: block;
  color: #3E2C23;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 20px;
  border-bottom: 3px solid transparent;
}

.topnav a:hover,  .dropdown:hover .dropbtn {
  background-color: #FFB400;
  border-bottom: 3px solid red;
}

.blue {
  background-color: #4C8CE4;
  color: white;
  border-bottom: 3px solid red;
}


.topnav .icon {
  display: none;
}

.topnav .split {
  float: right;
  background-color: #DB1A1A;
  color: white;
}


.topnav .center {
  float: left;
  margin-top: 5px;
  margin-left: 400px;
  color: brown;
}


@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

/*dropdown btn*/
.dropdown {
  float: right;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  outline: none;
  padding: 14px 16px;
}


/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #F5F5F5;
  min-width: 160px;
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #8AA624;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  margin-top: 55px;
  display: block;
}

