body {
  margin: 0;
  font-family: 'Caveat', cursive;
  background-color: #ecf0f3;
  color: #667292;
  word-wrap: break-word;
}

.topnav {
  overflow: hidden;
  box-shadow: 13px 13px 20px #cbced1,
  -13px -13px 20px #fff;
}

.topna {
  border-radius: 15px;
  background-color: #ecf0f3;
  box-shadow: 13px 13px 20px #cbced1,
  -13px -13px 20px #fff;
  padding: 10px;
  height: 90%;
}

.topnav a {
  float: left;
  display: block;
  color: #667292;
  text-align: center;
  padding: 30px 40px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  color: #bccad6;
}

.topnav a.active {
  color: #667292;
  font-size: 30px;
  
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@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;
  }
}

h2{
	color: #667292;
	text-align: center;
}

* {
  box-sizing: border-box;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
  padding: 40px;
 /* Should be removed. Only for demonstration */
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
}

#button button1{
	text-align: center;
}

.button {
  float: center;
  border: 1px solid #667292;
  color: #ecf0f3;
  padding: 10px 40px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 15px;
  margin: 12px 2px;
  cursor: pointer;
  background-color: #667292;
  border-radius: 10px;
}
.button1:hover {
  background-color:#ecf0f3;
  color: #667292;
  border: 1px solid #667292;
}

.ml12 {
  font-weight: 200;
  font-size: 1.8em;
  display: flex;
  height: 100vh;
  letter-spacing: 0.4em;
  align-items: center;
  justify-content: center;
}

.ml12 .letter {
  display: inline-block;
  line-height: 2em;
}

@keyframes arrows {
  0%,
  100% {
    color: #8a98bf;
    transform: translateY(0);
  }
  50% {
    color: #667292;
    transform: translateY(20px);
  }
}

span {
  --delay: 0s;
  animation: arrows 1s var(--delay) infinite ease-in;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Add animation to "page content" */
.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s
}

@-webkit-keyframes animatebottom {
  from { bottom:-100px; opacity:0 } 
  to { bottom:0px; opacity:1 }
}

@keyframes animatebottom { 
  from{ bottom:-100px; opacity:0 } 
  to{ bottom:0; opacity:1 }
}

#myDiv {
  display: none;
}




footer {
   box-shadow: 13px 13px 20px #fff,
  -13px -13px 20px #cbced1;
  text-align: center;
  padding: 5px;
  background-color: #ecf0f3;
  color: #667292;
}

