
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Patrick Hand', cursive;
  position: relative;
  overflow: hidden;
}


.background {
  background-image: url('thumb_12770682_cover_header.jpeg'); 
  background-size: cover;
  background-position: center;
  filter: blur(4px);
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -2;
}

.overlay {
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}


.content {
  text-align: center;
  
  padding: 4rem 2rem 2rem; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
}


h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}


.image-wrapper {
  position: relative;
  display: inline-block;
}

.start-button {
  position: absolute;
  top: 400px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  border: 2px solid #000;
  border-radius: 16px;
  padding: 0.5rem 2rem;
  text-decoration: none;
  color: #000;
  font-size: 1.2rem;
  z-index: 2;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.9);
   padding: 1rem 3rem;        
  font-size: 1.6rem;
}

.boy {
  width: 400px;
  max-width: 80%;
  display: block;
  margin: 0 auto;
  z-index: 1;
}


@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .boy {
    width: 140px;
  }

  .start-button {
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
  }
}
