/* Exported CSS from index.html */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
}

/* Set a fixed background for the page */
body {
  background: url('logo.png') center center no-repeat;
  background-size: cover;
  background-color: #121212;
  background-attachment: fixed;
}

/* Full-screen sections */
section {
  min-height: 100dvh;
  /*height: 100dvh;*/
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: auto;
}

/* Down arrow styling */
.arrow {
  position: absolute;
  bottom: 20px;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(10px); }
  60% { transform: translateY(5px); }
}

/* Blurred, semi-transparent overlay for text content */
.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  padding: 40px;
  /*max-width: 600px;*/
  width: 50%;
  min-width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  text-align: center;
}

/* Logo styling */
.logo {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
}

/* Headings and text styling */
h1 {
  margin: 0 0 20px;
  font-size: 2.5rem;
  color: #fff;
}

h2 {
  margin: 40px 0 20px;
  font-size: 1.75rem;
  color: #fff;
}

p {
  font-size: 1.1rem;
  color: #ddd;
  line-height: 1.6;
}

#content {
    margin: 2rem 0;
    /* This adds 2rem margin to top and bottom, 0 to left and right */
}
