/* Import Google Fonts in your HTML already, so just reference them here */
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: linear-gradient(120deg, #f5f7fa 0%, #c3cfe2 100%);
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #232323;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content {
  background: rgba(255,255,255, 0.97);
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
  padding: 40px 32px 32px 32px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  transition: box-shadow 0.3s;
}

.content:hover {
  box-shadow: 0 8px 40px 0 rgba(31, 38, 135, 0.18);
}

.title h1 {
  margin: 0 0 12px 0;
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  font-size: 2.2em;
  letter-spacing: 1px;
  color: #2D3748;
  text-shadow: 1px 2px 8px #e9ecef80;
  text-align: left;
}

.title p {
  margin: 0 0 32px 0;
  font-size: 1.1em;
  color: #5B5B5B;
  letter-spacing: 0.2px;
  text-justify: auto;
  text-align: justify;
}

.menu.row-padding {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.menu-button {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
  padding: 14px 20px;
  border-radius: 12px;
  background: linear-gradient(100deg, #edf2fb 0%, #e2eafc 100%);
  box-shadow: 0 2px 8px 0 rgba(60, 60, 60, 0.04);
  color: #2D3748;
  font-weight: 500;
  font-size: 1.08em;
  text-decoration: none;
  transition: background 0.18s, box-shadow 0.18s, transform 0.10s;
  border: none;
}

.menu-button img {
  height: 32px;
  width: 32px;
  object-fit: contain;
  margin-right: 10px;
  filter: drop-shadow(0 1px 2px #bbb8);
}

.menu-button:hover,
.menu-button:focus {
  background: linear-gradient(90deg, #dbeafe 0%, #a7c7e7 100%);
  color: #173768;
  box-shadow: 0 4px 16px 0 rgba(60, 60, 60, 0.13);
  transform: translateY(-2px) scale(1.03);
  text-decoration: none;
}

.menu-button.disabled,
.menu-button[disabled], 
.menu-button.disabled:visited, 
.menu-button.disabled:focus, 
.menu-button.disabled:hover {
  pointer-events: none;
  opacity: 0.58;
  background: linear-gradient(100deg, #e2eafc 0%, #d1d5db 100%);
  color: #8a8a8a;
  box-shadow: none;
  filter: grayscale(0.35);
  cursor: not-allowed;
  text-decoration: none;
}

.social-links {
  display: flex;
  gap: 14px;
  /* margin-top: 12px; */
  justify-content: center;
}

.social-links > .menu-button {
  width: 100%;
}

@media (max-width: 600px) {
  body{
    align-items: stretch !important;
  }
  .content {
    max-width: 98vw;
    padding: 22px 6vw 20px 6vw;
    border-radius: 0;
  }
  .title h1 {
    font-size: 1.5em;
  }
  .menu-button {
    font-size: 0.98em;
    padding: 11px 10px;
  }
  .social-links {
    justify-content: center;
    /* margin-top: 18px; */
    gap: 8px;
  }
}
