*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --yellow: #f1be32;
  --golden-yellow: #feac32;
  --dark-purple: #110815;
  --light-grey: #efefef;
}

body {
  background-color: var(--dark-purple);
  color: var(--light-grey);
  text-align: center;
  font-family: sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
}

.main-content {
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.bg-information-container {
  margin: 15px 0 25px;
  font-size: 1.5rem;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.bg-information-container:hover {
  transform: scale(1.05);
  background-color: rgba(0, 0, 0, 0.3);
}

.btn {
  cursor: pointer;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  margin: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 1px;
  transition: transform 0.15s ease-in-out, box-shadow 0.15s ease-in-out, background-color 0.5s ease-in-out;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(2px);
  box-shadow: none !important; 
}

.site-footer {
  width: 100%;
  text-align: center;
  padding: 20px 0;
  margin-top: auto;
  transition: color 0.5s ease-in-out;
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.8rem;
  }
  .bg-information-container {
    font-size: 1.2rem;
  }
  .btn {
    width: 80%;
    max-width: 300px;
  }
  .site-footer {
  width: 60%;
  text-align: center;
  padding: 55px 0;
  margin-top: auto;
  transition: color 0.5s ease-in-out;
}

}

.credit {
  font-size: 1.1rem;
}

.heart {
  display: inline-block;
  cursor: pointer;
  transition: transform 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}

.heart:hover {
  transform: scale(1.4);
}