body {  
    background-color: antiquewhite;
    
}
.sec-color{
    color: rgb(255, 0, 0);
}
.btn{
    background-color: brown;
    border-color:brown ;
}
.input{
    background-color: rgba(0, 0, 255, 0.197);
}
h1{
    color:black;
    text-align: center;
    font-size: 70px;
 }
 h2{
    color:black;
    text-align: center;
    font-size: 50px;
 }
 p{
    color:black;
    text-align: center;
 }
.img{
    background-image: url("https://cdn.pixabay.com/photo/2019/06/25/04/40/light-bulb-4297386_1280.jpg");
    background-repeat: no-repeat;
    box-shadow: 0 0 5px 5px antiquewhite inset;
    background-position: center;
    background-size: cover;
    position: relative;
    height: 100vh;
}
.hero_text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .hero_button {
    background-image: linear-gradient(to right,rgb(255,196,12), rgb(255, 150, 12)); 
    border: none;
    color: black;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 25px;
    font-weight: bold;
    border-radius: 12px;
  }

@media (orientation: portrait) {
    #special-text {
      font-size: 50px; 
    }
  }
  

  @media (orientation: landscape) {
    #special-text {
        font-size: 8vw;
    }
  }
h6{
  text-align: center;
  }