.container1 {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #7BC0EA;
    padding: 10px; /* Add padding for better spacing */
  }
  
  ul {
    display: flex;
    margin-bottom: 0px;
  }
  
  li {
    margin: 20px;
    list-style: none;
  }
  
  li a {
    text-decoration: none;
  }
  
  .container {
    display: flex;
    justify-content: space-between;
  }
  
  
  
  #logo {
    display: inline-block;
    /* width: 50px; Adjust the width of your logo */
    /* height: 300px; */
    /* width: 300px; */
    overflow-clip-margin: content-box;
    overflow: clip;
    /* margin-right: 20px; */
  }
  .first {
    color: red;
    text-align: center;
    font-size: 45px; /* Set your desired font size */
  }
  header {
    text-align: center;
    padding: 20px;
    position: fixed;
    width: 100%;
    /* background-color: #161b22; */
    z-index: 1000; /* Set a higher z-index to keep it above other elements */
    padding-top: 1200px;
  }
  
  .card{
    position: relative;
    width: 300px;
    height: 350px;
    background: #fff;
    /* margin: 0; */
    border-radius: 4px;
    box-shadow:0 2px 10px rgba(0,0,0,.2);
  }
  .card:before,
  .card:after
  {
    content:"";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1px;
    background: #fff;
    transition: 0.5s;
    z-index:-1;
  }
  .card:hover:before{
  transform: rotate(20deg);
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
  }
  .card:hover:after{
  transform: rotate(10deg);
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
  }
  .card .imgBx{
  position: absolute;
  top: 10px;
  left: 10px;
  bottom: 10px;
  right: 10px;
  background: #222;
  transition: 0.5s;
  z-index: 1;
  }
  
  .card:hover .imgBx
  {
    bottom: 88px;
  }
  
  .card .imgBx img{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
  }
  
  .card .details{
      position: absolute;
      left: 10px;
      right: 10px;
      bottom: 10px;
      height: 60px;
      text-align: center;
  }
  
  .card .details h2{
   margin: 0;
   padding: 0;
   font-weight: 600;
   font-size: 20px;
   color: #777;
   text-transform: uppercase;
  } 
  
  .card .details h2 span{
  font-weight: 500;
  font-size: 10px;
  color: #f38695;
  display: block;
  margin-top: 5px;
   } 
  body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
      url(moon-2048727_1920.jpg);
      
    /* position: fixed; */
    overflow-x: hidden; 
  }
  
  .box1
  {
    margin-top: 10%;
    display: flex;
    justify-content: space-around;
  }
  
  h1{
    color: blue;
    font-size: 100px;
    font-weight: bolder;
    margin-bottom: 0%;
  }
  
  /* button besing */
  @import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap');
  
  *{
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }
  
  button{
    padding: 1px 400px;
    background-color: #050801;
    color: #03e9f4;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    letter-spacing: 4px;
    overflow: hidden;
    transition: 0.5s;
    cursor: pointer;
    /* margin-left: 20%; */
    margin-top: 22%;
    margin-bottom: 8%;
  }
  
  button:hover{
      background: #03e9f4;
      color: #050801;
      box-shadow: 0 0 5px #03e9f4,
                  0 0 25px #03e9f4,
                  0 0 50px #03e9f4,
                  0 0 200px #03e9f4;
       -webkit-box-reflect:below 1px linear-gradient(transparent, #0005);
  }