body{
    margin: 0;
    background: black; 
    font-family: Arial, Helvetica, sans-serif;
    color: white;
  }
  
 
  .hero{
    height: 100vh;
    position: relative;
  

    background-image: url("../img/hero.jpeg");
    background-size: cover;
    background-position: center;
  }
  
  
  .overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
  }
  

  .top{
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
  }
  
  
  .left a{
    color: white;
    text-decoration: none;
    letter-spacing: 3px;
    font-size: 14px;
    text-transform: uppercase;
  }
  
  
  .right{
    display: flex;
    gap: 50px;
  }
  
  .right a{
    color: white;
    text-decoration: none;
    letter-spacing: 3px;
    font-size: 13px;
    text-transform: uppercase;
    padding-bottom: 6px;
  }
  
  
  .right a:hover{
    border-bottom: 2px solid #f4b6c8;
  }
  

  .text{
    position: absolute;
    left: 60px;
    bottom: 90px;
    z-index: 2;
  }
  
  .text h1{
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 85px;
    font-weight: normal;
  }
  
  .text p{
    margin: 18px 0 30px;
    font-size: 16px;
    letter-spacing: 1px;
  }
  
  .btn {
    position: relative;   
    z-index: 3; 
  
    display: inline-block;
    padding: 14px 22px;
  
    border: 2px solid #f4b6c8;
    color: white;
    background: transparent;
  
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 13px;
  
    transition: all 0.2s ease;
  }
  
  .btn:hover {
    background-color: white;
    color: #f4b6c8;
  }
  

  .btn:active {
    background-color: black;
    color: white;
  }