/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: Arial, sans-serif;
  background-color: black;
  color: white;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* CONTAINER LAYOUT */
.container {
  display: flex;
  flex: 1;
}

/* SIDEBAR */
.sidebar {
  width: 200px;
  background-color: #000;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: sticky;
  top: 0;
  height: 100vh;
}

.logo img {
  width: 100px;
  height: auto;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav a {
  color: crimson;
  text-decoration: none;
  font-size: 1rem;
  transition: 0.3s ease;
}

.nav a:hover {
  color: white;
  font-size: 1.1rem;
}

/* MAIN CONTENT */
.content {
  flex: 1;
  padding: 3rem;
}

.content h1 {
  padding: 1rem;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 4rem;
  background: linear-gradient(to right, crimson, indianred);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 2px 2px 5px #222;
}

}
.content p {
  font-size: 1.5rem;
  color: #e0e0e0;
  max-width: 400px;
  margin: 0 auto 1.5rem auto;
  text-align: justify;
}



/* FOOTER */
.footer {
  background-color: indianred;
  text-align: center;
  padding: 1.5rem 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin-bottom: 1rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
}

.footer-links a:hover {
  color: crimson;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    height: auto;
    flex-direction: row;
    justify-content: space-around;
    padding: 1rem;
  }

  .nav {
    flex-direction: row;
  }

  .content {
    padding: 2rem 1rem;
  }

  .content h1 {
    font-size: 2rem;
  }
}
