html, body {
  overflow: hidden;
  height: 100%;
}

body {
  margin: 0;
  background-color: #F4BA16;
  font-family: 'Comic Neue', 'Comic Sans MS', 'Comic Sans', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #000;
  padding: 0 20px;
  box-sizing: border-box;
}

img.logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
}

h1 {
  margin: 20px 0 10px;
  font-size: 1.5rem;
  font-weight: bold;
}

.socials {
  margin: 20px 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.socials a img {
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease;
}

.socials a:hover img {
  transform: scale(1.2);
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 340px;
  margin-top: 20px;
}

.action-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 48px;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  transition: background-color 0.2s ease, transform 0.2s ease;
  padding: 0;
}

.action-buttons .donate {
  background: #000;
  color: #F4BA16;
  border: 2px solid #000;
}

.action-buttons .contact {
  border: 2px solid #000;
  color: #000;
  background-color: transparent;
}

.action-buttons a:hover {
  transform: scale(1.03);
}

.action-buttons .donate:hover {
  background-color: #333;
}

.action-buttons .contact:hover {
  background-color: #f7d74f;
}