/* CSS script document */
@charset "UTF-8";
@import url("reset.css");
/* stylesheet */

.typecss1 {
  background: linear-gradient(to top, #FFE4E1, #C0C0C0, #F5F5F5, #C0C0C0, #FFE4E1);  
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);		
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 20%;
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 9999;
  line-height: 4px;
}

.typecssBox1 {
 /* background: #00ffff;  */
  width: 170px;
  height: 100%;
  float: left;
}

.typecssBox2 {
 /* background: #00ffff;  */
  width: 70%;
  height: 100%;
  margin: 0 auto;
  margin-top: 4px;
 
}

.responsive-image {
    max-width: 100%; /* Prevents the image from being wider than its container */
    height: 100%;    /* Maintains aspect ratio */
    object-fit: cover; /* Maintains aspect ratio and fills the container */
} 

.typecss2 {
   /* background-image: url("1wa63s/3826129392.png"); */

  background: #FFF8DC;
  background-size: contain;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: 100% 575px;  
  width: 100%;
  height: 400px;
}
.typecss3 {
  background: #444444;
  width: 100%;
  height: 200%;
}

#text {
  font-size: 30px;
  margin-top: 20px;
  margin-left: 20px;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}
  
 p {
  font-size: 25px;
  margin-top: 20px;
  margin-left: 20px;
  float: left;
  }
  
  .btn-3d {
  margin-left: 0px;
  display: inline-block;
  padding: 10px 15px;
  border: none;
  background-color: #333;
  color: #fff;
  text-shadow: 1px 1px 1px #000;
  box-shadow: 2px 2px 2px #000;
  transform: translate3d(0, 0, 0);
  transition: transform 0.2s ease-in-out;
}

.btn-3d:hover {
  transform: translate3d(0, -2px, 0);
  margin-left: 0px;
}

 .btn-3d:focus {
 width:100px;
 height:34px;
 margin-left: 0px;
 background-color:red;
 transform: translate3d(0, 0px, 0px);
} 

.gifbutton1 {
 width:80px;
 height:25px;
 border-radius: 10%;
 overflow:hidden;
}

.gifbutton1:hover {
  transform: translate3d(0, -2px, 0);
}
  
 .gifbutton1:focus {
 background: url=("61f/button2.gif");
 width:70px;
 height:20px;
 transform: translate3d(0, 2px, 0);
} 

        .search-container {
		
            display: inline-block;
            background-color:  #444444;
            padding: -10px 10px;
            border-radius: 6px;
            background-color: rgba(0, 0, 0, 0.3); /* 30% transparent black */
            text-align: center;
        }
		
        .search-box {
            padding: 5px 100px;
            font-size: 14px;
            border: 2px solid #333;
            border-radius: 5px;
            box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4), 
                        -3px -3px 5px rgba(255, 0, 0, 0.4); /* Black and red shadow */
            outline: none;
            transition: box-shadow 0.3s ease, transform 0.3s ease;
        }

        .search-box:focus {
            box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.6), 
                        -3px -3px 10px rgba(255, 0, 0, 0.6);
            transform: translateY(-2px); /* Adds a slight lift effect */
        }

        .search-button {
            padding: 5px 20px;
            background-color: #333;
            color: #fff;
            font-size: 16px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .search-button:hover {
            background-color: #444;
        }