/* General Reset */
body,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
  background-color: #f8fafc;
  color: #333;
  line-height: 1.6;
  font-family: "Montserrat", serif;
}

/* Container */
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 1rem;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
  max-width: 800px;
  margin: auto;
  border: 1px solid #e5e7eb;
}

/* Header */
.header h1 {
  font-size: 2.5rem;
  color: #0dafcb;
  margin: 0;
  text-align: center;
}

.header .tagline {
  margin-top: 0.5rem;
  font-size: 1.2rem;
  color: #6b7280;
  text-align: center;
}


/* Content Description */
.description {
  font-size: 1rem;
  color: #6b7280; 
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 1.5;
}

/* Buttons */
.buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.icon {
  margin-right: 0.5rem;
  font-size: 1.2rem;
  display: inline-block;
  vertical-align: middle;
}

.button {
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: bold;
  background-color: #139ad8;
  color: white;
  transition: background-color 0.3s, transform 0.2s;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.button:hover {
  background-color: #0979ad;
  transform: scale(1.02);
}

.button:active {
  background-color: #139ad8;
  transform: scale(0.95);
}

/* Footer */
.footer {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #6b7280;
  text-align: center;
}

.footer a {
  color: #139ad8;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Responsiveness */
@media (max-width: 768px) {
  .header h1 {
    font-size: 2rem;
  }

  .buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .button {
    width: 100%;
    text-align: center;
  }

  .main-content h2 {
    font-size: 1.5rem;
  }

  .description {
    font-size: 0.9rem;
  }
}
