body {
  background-color: #f9f9f9;
}

body,
p {
  font-family: "Helvetica Neue", "Segoe UI", Segoe, Helvetica, Arial, "Lucida Grande", sans-serif;  
  color: #292929; 
}

.container {  
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
 margin: 10vh 0;
}

.logo img {
  width: 30vw;
}

p {
  margin: 0 0 10px;
}

a {
  color: #ffffff;
  text-decoration: none;
}

.typewriter {
  font-size: 24px;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #292929;
  box-sizing: border-box;
}

@keyframes blink {
  50% {
      border-color: transparent;
  }
}

.typewriter {
  position: fixed;
  left: 15vw;
}

.typewriter-container {
  display: flex;
  font-size: 4vw;
}

#static-text {
  font-weight: bold;
  float: left;
}

#typewriter-text {
  display: inline-block;
  animation: blink 0.7s infinite step-end;
}

.imprint {
	position: fixed;
  bottom: 0;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: normal;
  font-size: clamp(0.5em, 2.8vw, 1em);
}


/* Popup background */
.popup {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Black w/ opacity */
}

/* Popup content */
.popup-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

/* Close button */
.close-btn {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Accept button */
#accept-btn {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #292929;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

#accept-btn:hover {
  background-color: #21a1f1;
}