* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family:  "MonteCarlo", cursive;
    background-color: #f5f5f5;
  }
  
  .hero {
    position: relative;
    background-image: url('ballet-en-pointe-laura-fasulo.jpg'); 
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .overlay {
    text-align: center;
  }
  
  .overlay h1 {
    font-size: 200px;
    color: white;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }
  
  .overlay a {
    padding: 1em;
    background-color: #d9b3b3;
    border: none;
    border-radius: 20px;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
  }
  
  .overlay a:hover {
    background-color: #c69b9b;
  }
  