@import url('https://fonts.googleapis.com/css2?family=Tangerine:wght@700&display=swap');  


#title{
    font-family: 'Tangerine', cursive;
     }
    #title::first-letter{
        font-size: 1.5em;
        color: #ff0157;
    }

h4::first-letter{
    font-size: 2em;
    color: #ff0157;
    font-family: 'Tangerine', cursive;

}

.btn{
  transition: opacity 2s;
  transition: background-color 2s;
  
}
.btn:hover {
    background-color: #fff;
    border: 2px solid blue;
    color: blue;
   
}

.btn:active{
opacity: 0.5;
}

.bg-hero {
    position: relative;
    width: 100%;
    height: 100%;
    background: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?ixlib=rb-1.2.1&ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&auto=format&fit=crop&w=2550&q=80")
      center center no-repeat;
    background-size: cover;
    z-index: 1;
  }
  
  .bg-hero:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to bottom right, rgb(48, 48, 49), #000);
    background-attachment: fixed;
    opacity: 0.5;
    z-index: -1;
  }

  .bg-hero1 {
    position: relative;
    width: 100%;
    height: 100%;
    background: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?ixlib=rb-1.2.1&ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&auto=format&fit=crop&w=2550&q=80")
    center center no-repeat;
    background-size: cover;
    z-index: 1;
   border-radius: 30px;
   outline:none;
   border: none;
  }
  
   .bg-hero1:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to bottom right, rgb(48, 48, 49), #000);
    opacity: 0.8;
    z-index: -1;
   border-radius: 30px;
  } 

  th{
    font: 1.2em sans-serif;
    }
   