body {
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f4f4f4;
}

h1.title {
  font-size: 9rem;
  color: #333;
  margin: -50px;
  font-family: "Tulpen One", cursive;
  font-weight: 100;
}

.code-part {
  color: #0056b3;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
}

.labs-part {
  color: #00bfa5;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
}

.codelabs-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0;
  padding: 10px;
  width: fit-content;
}

.codelabs-hr {
  width: 100%;
  height: 2px;
  background-color: #cccccc;
  border: none;
  margin: 5px auto;
}

.codelabs-slogan {
  font-family: "Tulpen One", cursive;
  font-size: 3rem;
  font-weight: 100;
  color: #4a6fa5;
  margin: 0;
  width: 100%;
}

.codelabs-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Tulpen One", cursive;
  font-size: 1.8rem;
  font-weight: 100;
  gap: 20px;
  color: #cccccc;
  margin: 0;
  width: 100%;
}

.codelabs-icons i.fa-rust { color: #dea584; }      /* Rust */
.codelabs-icons i.fa-node-js { color: #3c873a; }  /* Node.js */
.codelabs-icons i.fa-python { color: #3776ab; }   /* Python */
.codelabs-icons i.fa-golang { color: #00add8; }   /* Go */
.codelabs-icons i.fa-php { color: #777bb4; }      /* PHP */

@media (max-width: 600px) {
  h1.title {
    font-size: 4.5rem;
    margin: -20px;
  }
  .codelabs-slogan {
    font-size: 1.5rem;
  }
  .codelabs-icons {
    font-size: 0.8rem;
  }
}
