*{
    padding: 0;
    margin: 0;
}
body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.logo-container {
    display: flex;
    justify-content: center;
}
header {
  background-color: black;
  height: 0;
}
.main-logo {
  width: auto;
  height: auto;
  max-width: 100%;
  COLOR: WHITE;
  Z-INDEX: 9999;
}
h1.main-logo {
  margin: 160px;
}
input {
    height: 30px;
}
.image img {
    width: calc(100% + 45px);
    height: auto;
    display: block;
}
  @keyframes fadeIn {
    from {top: 20%; opacity: 0;}
    to {top: 100; opacity: 1;}
    
  }
  
  @-webkit-keyframes fadeIn {
    from {top: 20%; opacity: 0;}
    to {top: 100; opacity: 1;}
    
  }
  .wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    animation: fadeIn 1000ms ease;
    -webkit-animation: fadeIn 1000ms ease;
    z-index: 99999;
  }
  
  h1 {
    font-size: 50px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0;
    line-height: 1;
    font-weight: 700;
    margin: 60px;
  }
  h2 {
    font-size: 30px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0;
    line-height: 3;
    font-weight: 700;
    color: white;
}
h3 {
    color: white;
    font-family: 'Poppins';
    margin-bottom: 30px;
}
  .dot {
    color: #4FEBFE;
  }
  
  p {
    text-align: center;
    margin: 18px;
    font-family: 'Muli', sans-serif;
    font-weight: normal;
    
  }
  
  .icons {
    text-align: center;
    
  }
  
  .icons i {
    color: #00091B;
    background: #fff;
    height: 30px;
    width: 30px;
    padding: 13px;
    margin: 0 10px;
    border-radius: 50px;
    border: 2px solid #fff;
    transition: all 200ms ease;
    text-decoration: none;
    position: relative;
    font-size: 30px;
  }
  
  .icons i:hover, .icons i:active {
    color: #fff;
    background: none;
    cursor: pointer !important;
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    text-decoration: none;
    
  }
  .image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 100%;
    margin: 0 auto;
}
.logo {
  position: absolute;
  text-align: center;
}
  .image {
    width: 100%; 
    overflow: hidden;
  }
  
  .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  
  .image img {
    width: 100%; 
    height: auto; 
    display: block; 
  }
  .image::after {
    content: ""; 
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1; 
  }
@media screen and (min-width: 1440px) {
        .image img {
            width: 100%;
            height: auto;
            display: block;
        }
    }
  @media screen and (max-width: 576px) {
      
    body {
        overflow-y: hidden;
    }
    h1.main-logo {
        margin: 70px;
    }
    .icons i {
        height: 25px;
        width: 25px;
        padding: 9px;
        font-size: 25px;
        margin: 0px;
        margin-top: 10px;
    }
    h1 {
      font-size: 35px;
      margin: 60px;
      text-align: center;
  }
    h2 {
        font-size: 30px;
        font-family: 'Poppins', sans-serif;
        margin-bottom: 0;
        line-height: 40px;
        text-align: center;
        margin-bottom: 60px;
    }
  }
  
    @media screen and (max-width: 400px) {
  
       h2 {
            font-size: 30px;
            font-family: 'Poppins', sans-serif;
            margin-bottom: 0;
            line-height: 30px;
            text-align: center;
            margin-bottom: 30px;
            margin-top: 50px;
        }
    }
