body {
  background-image: radial-gradient(circle at 50% 50%, #f5fbfa, #264653);
  font-family:
    "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  color: #263238;
}

#logo {
  width: 100px;
  height: 100px;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  margin: 0;
  background-color: #264653;
  color: #fff8e7;
}
#under-construction {
  text-align: center;
  margin-top: 50px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.typewriter-container {
  font-family:
    "Courier New", Courier, monospace; /* Monospace gives a classic typewriter feel */
  font-size: 50px;
  font-weight: bold;
  text-shadow:
    1px 1px #74c0e3,
    2px 2px #74c0e3,
    3px 3px #f4c95d;
  color: #264653;
  margin-top: 80px;
}

/* The typing text element */
#typewriter-text {
  position: relative;
  border-right: 3px solid #f28482; /* The cursor line */
  white-space: nowrap;
  animation: blink-cursor 0.75s step-end infinite; /* Makes the cursor flash */
}

/* Cursor blink keyframes */
@keyframes blink-cursor {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: #f28482;
  }
}
#future-content {
  text-align: center;
  margin-top: 40px;
  width: 40%;
  background-color: #fff8e7;
  color: #263238;
  padding: 20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100px;
  border: 6px solid #2a9d8f;
  border-radius: 16px;
  box-shadow:
    4px 4px 0 #f28482,
    0 15px 30px rgba(38, 70, 83, 0.15);
}
#content-list {
  list-style-type: none;
}
ul li {
  margin: 10px 0;
  padding: 8px 12px;
  border-radius: 8px;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}
#content-label {
  font-weight: bold;
  margin-bottom: 10px;
}
ul li:hover {
  background-color: #f4c95d;
  transform: translateX(6px);
}
.firstLetter {
  font-family: serif;
  font-size: 1.5em;
  font-weight: bold;
  color: #f28482;
}
#logo {
  border-radius: 50%;
  border: 5px solid ivory;
}
nav {
  width: 100%;
  height: 5%;
  background-color: #264653;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin-right: auto;
  margin-left: auto;
}
nav ul li {
  display: inline-block;
  margin: 0 15px;
}
nav ul li a {
  text-decoration: none;
  color: #fff8e7;
  font-weight: bold;
  transition: color 0.3s ease;
}
#name-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
