body{
  background-color: #ffffff;
  margin: 0;
  font-synthesis: none;
}

.div {
  width: 200px;
  height: 200px;
  position: relative;
  background-color: red;
  animation-name: siteIntro;
  animation-duration: 8s;
  animation-iteration-count: 1;
}

@font-face {
  font-family: Barbarian;
  src: url("Barbarian.ttf");
}

@font-face {
  font-family: Grusskarten;
  src: url("GrusskartenGotisch.ttf");
}

.yes {
  text-align: center;
  margin: 0;
  padding-left: 30px;
  color: #d3d2cd; 
  font-family: Barbarian;
  font-size: 70px;
}

@keyframes siteIntro {
  
}

.sidenav {
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 1; /* Stay on top */
  top: 0; /* Stay at the top */
  right: 0;
  background-color: #111; /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-family: Grusskarten;
  font-size: 50px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 36px;
}

.border {
  overflow: hidden;
  background-color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main {
  margin-top: 40px; 
  padding: 20px;
}

*{
  box-sizing: border-box;
}

.openNav{
  color: white;
  cursor: pointer;
  margin-right: 20px;
  font-size: 36px;
}