

h4 {
  color: white;
  font-size:1.2em;
  margin-left: 2vw;
  font-weight: lighter;
  font-style: italic;
}

nav ul {
  list-style: none;
  padding-inline-start: 0;
}

nav li {
  margin-bottom: 5px;
}

nav li:last-child {
  margin-bottom: 0;
}

nav .titel a {
  font-size: 1.5em;
  position: relative;
  top: 0.3vh;
  left: 1vw;
  color: #581485;
  text-decoration: none;
  border: 2px solid #f8bdff;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 5px;
  margin-left: 1vw;
  padding: 10px 30px;
  text-align: center;
}

nav .titel a:link, nav .title a:visited {
  position: relative;
  top: 0.3vh;
  left: 1vw;
  color: #581485;
  text-decoration: none;
  border: 2px solid #f8bdff;
  border-radius: 30px;
  display: inline-block;
}

nav .titel a:hover {
  position: relative;
  top: 0.3vh;
  text-decoration: none;
  color: white;
  border: 2px solid #f8bdff;
  border-radius: 30px;
  background-color: white;
  display: inline-block;
}

nav .titel a:active {
  position: relative;
  top: 0.3vh;
  bottom: 0.3vh;
  text-decoration: none;
  color: white;
  border: 2px solid #f8bdff;
  border-radius: 30px;
  display: inline-block;
}

.contact a:link{
  position: absolute;
  text-decoration: none;
  color: white;
  bottom: 1vh;
  left:3vw;
}

/* Popup container */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* The actual popup (appears on top) */
.popup .popuptext {
  visibility: hidden;
  width: 200px;
  background-color: none;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 10px 0;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -50px;
  border-color: transparent;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -6px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}
