body {
  font-family: 'IBM Plex Sans', sans-serif;
  background: #242229;
  color: #ffffff;
}

.emphasized {
  font-style: italic;
}

.topnav {
  overflow: hidden;
  background-color: #333;
}

.topnav-social {
  float: right;
  height: 100%;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  flex: auto;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #177E89;
  color: white;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {
    display: none;
  }

  .topnav-social {
    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;
  }
}

#header,
#header-img,
.main-text,
.quotes {
  margin-top: 6%;
  margin-left: 5%;
  margin-right: 5%;
  width: 80%
}

#header {
  text-align: left;
  display: flex;
  border: 10px white;
  align-items: center;
  justify-content: space-around;
  margin-left: auto;
  margin-right: auto;
}

#contact-button {
  background-color: #177E89;
  border: 1px black;
  padding: 10px;
  appearance: button;
  text-decoration: none;
  color: initial;
}

#header-img {
  background-position: center;
  /* Center the image */
  background-repeat: no-repeat;
  max-width: 250px;
  border-radius: 100%;
}

.main-text {
  display: block;
  margin: auto;
  padding-bottom: 100px;
  margin-top: 5%;
}

.quotes {
  display: flex;
  overflow-x: auto;
  flex-wrap: nowrap;
  padding-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}

.quotes::-webkit-scrollbar {
  display: none;
}

.quote {
  flex: 0 0 auto;
  box-shadow: 3px 10px 5px black;
  background-color: #F2F4F3;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 15px;
  width: 300px;
  height: 120px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.quote-text {
  font-size: 18px;
  font-style: italic;
  color: black;
  text-align: center;
  position: absolute;
  width: 95%;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -60%);
}

/* # position: absolute;
  # display: block;
  # margin: auto;
  # bottom: 0px;
  # top: 0px;
  # left: 50%;
  # transform: translate(-50%, 75%);
  */
.quote-author {
  font-size: 15px;
  font-weight: 600;
  color: #177E89;
  text-shadow: 0px 0px 0px black;
  text-align: center;
  margin: 0;
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -60%);
}

.footer {
  display: flex;
  flex-direction: column;
  background-color: #2c2a2f;
  padding: 10px;
  height: 15%;
  width: 100%;
  color: white;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgb(165, 165, 165);
}

#footer-name #footer-note {
  margin-left: auto;
  margin-right: auto;
}

#footer-name {
  font-size: 25px;
  font-weight: 600;
  padding-bottom: 20px;
  padding-top: 15px;
}

#footer-note {
  font-size: 14px;
}

.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* The actual popup */
.popup .popuptext {
  visibility: hidden;
  width: 160px;
  background-color: #177E89;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 2px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -80px;
}

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

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

#bye {
  font-size: 60px;
  margin: 0 auto;
  padding-top: 8rem;
  text-align: center;
}

#deadline {
  font-family: 'Cursed Timer ULiL', sans-serif;
  max-width: 400px;
  font-size: 50px;
  color: crimson;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}