.u-section-1 .u-sheet-1 {
  min-height: 400px;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* body {
  font-family: 'Roboto', sans-serif;
  background: url('https://www.transparenttextures.com/patterns/stardust.png'), linear-gradient(to right, #000000 50%, #191970);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  color: #fff;
} */
.container {
  background: url('https://www.transparenttextures.com/patterns/stardust.png'), linear-gradient(to right, #000000 50%, #191970);
  text-align: center;
  /* background: rgba(0, 0, 0, 0.7); */
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  animation: fadeIn 2s ease-in-out;
  color: #cfcfcf; /* Space grey color */
}

h1 {
  margin-bottom: 10px;
  font-size: 2.5em;
  animation: slideIn 2s ease-in-out;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  border-top: 2px solid #000080;
  border-bottom: 2px solid #000080;
  padding-bottom: 10px;
}
p {
  font-size: 1.2em;
  margin-bottom: 20px;
  animation: slideIn 2.4s ease-in-out;
}
button {
  background-color: #000080;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  animation: bounceIn 3s ease-in-out;
}
button:hover {
  background-color: #e91e63;
  transform: scale(1.1);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideIn {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes bounceIn {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-30px); }
  60% { transform: translateY(-15px); }
}