@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;700&display=swap');

body {
  margin: 0;
  padding: 0;
  background-image: url("final_background.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  
 
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  
  color: white;
  font-family: 'Quicksand', sans-serif;
  text-align: center;
  overflow: hidden;
}

.final-container {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5vh 5vw; 
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
  max-width: 80%;
  box-sizing: border-box;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: 1;
}

h1 {
  font-size: clamp(32px, 5vw, 48px); 
  margin-bottom: 20px;
  font-weight: 700;
  z-index: 2;
}

p {
  font-size: clamp(18px, 2.5vw, 24px);
  margin: 0;
}