/* Reset básico e variáveis */
:root {
    --bg-color: #506799; /* Fundo escuro estilo "dark mode" */
    --bg-color2: #f4f4f4;
    --text-color: #f0f0f0;
    --accent-color: #c0c0c0; /* azul */
    --accent-color2:#a3a3a3; /* azul */
}

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: var(--bg-color2);
}

h1.title {
  font-size: 9rem;
  color: #333;
  margin: -50px;
  font-family: "Tulpen One", cursive;
  font-weight: 100;
  text-shadow: 
        4px 4px 0px var(--accent-color);
  transition: transform 0.3s ease;
}

/* Efeito Hover para o título */
#main-title:hover {
    transform: scale(1.05) rotate(-4deg);
    cursor: default;
}

.code-part {
  color: #0056b3;
}

.labs-part {
  color: #00bfa5;
}

.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;
  }
}
