@import url('fonts.css');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: 'tg', sans-serif;
}

body {
  background: #07352E;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.container {
  text-align: center;
  max-width: 600px;
  width: 100%;
}

h1 {
  font-size: 4rem;
  color: #FBF7F1;
  font-weight: 400;
  margin-bottom: 2rem;
}

.button-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.1s ease;
  font-family: 'tg', sans-serif;
  font-weight: 100;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  color: #FBF7F1;
  background: none
}

.btn-primary:hover {
  background-color: #f0f0f011;
  transform: translateY(-2px);
  /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); */
}

/* .btn-secondary {
  /* background-color: rgba(255, 255, 255, 0.2); */
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  /* background-color: rgba(255, 255, 255, 0.3); */
  transform: translateY(-2px);
  /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); */
} */

/* Mobile styles */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .button-group {
    gap: 1rem;
  }

  .btn {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
}

/* Tablet styles */
@media (max-width: 1024px) and (min-width: 769px) {
  h1 {
    font-size: 3rem;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    align-self: center;
  }

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

  .btn {
    padding: 10px 20px;
    font-size: 0.8rem;
    width: 70%;
    align-self: center;
  }
}