* {
  margin: 0;
  padding: 0;
}
body{
    margin:0;
    height:100vh;
    display:grid;
    place-items:center;
    background-color:#131313;
  }
  
  .gallery{
    width:95vw;
    height:40vmin;
    display:flex;
    gap:25px;
  }
  .logo11 {
    position: absolute;
    box-sizing: border-box;
    margin-top: 120px;
    left: 980px;
  }
  
  .gallery img{
    height:100%;
    flex:1;
    object-fit:cover;
    overflow:hidden;
    cursor:pointer;
    border-radius:10px;
    transition:all 0.3s;
  }
  
  .gallery img:hover{
    flex:4;
  }
  .h3text {
    color: darkgoldenrod;
  }



  .navbar {
    width: 85%;
    margin: auto;
    padding: 35px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.navbar ul li{
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    position: relative;

}
.navbar ul li a{
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
}
.navbar ul li::after{
    content: '';
    height: 3px;
    width: 0;
    background: #04aac7;
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: 0.5s;
}
.navbar ul li:hover::after {
    width: 100%;

}
.h11 {
    color: beige;
    font-family: 'Courier New', Courier, monospace;
}
.type {
  color: #fff;
}

