body {
  font-family: 'Do Hyeon';font-size: 22px;
  margin: 0;
}

/*centered words*/
.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*fad-in-words*/
@keyframes myAnimation {
  from {
    transform: translateY(20px) scale(0.95);
    opacity: 0;
  }
  to {
    transform: translateY(0px) scale(1);
    opacity: 1;
  }
}

.animated-element {
  animation-name: myAnimation;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
}

/*background*/

.custom-pattern {
	background-image: radial-gradient(#1A8FE5 2px, transparent 2px);
	background-size: 32px 32px;
	background-color: #E1EB71;
}

/*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;
}




/*header*/

header {
  text-align: center;
  font-size: 100%
}



  
  
