@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
.menugaleria{
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(-135deg, #0c4d87, #211f1f);
  /* background: linear-gradient(375deg, #1cc7d0, #2ede98); */
  transition: all 0.3s ease-in-out;
}


.menugaleria ul{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
}
.menugaleria ul li{
  margin: 15px 0;
}
.menugaleria ul li a{
  color: none;
  text-decoration: none;
  font-size: 25px;
  font-weight: 500;
  padding: 5px 30px;
  color: #fff;
  position: relative;
  line-height: 50px;
  transition: all 0.3s ease;
}
.menugaleria ul li a:after{
  position: absolute;
  content: "";
  background: #fff;
  width: 100%;
  height: 50px;
  left: 0;
  border-radius: 50px;
  transform: scaleY(0);
  z-index: -1;
  transition: transform 0.3s ease;
}
.menugaleria ul li a:hover:after{
  transform: scaleY(1);
}
.menugaleria ul li a:hover{
  color: #4158d0;
}

.logo1{

width:100%;
max-width:400px;
position: relative;
top:0px;

}
.logo2{
width:80px;
height:80px;
border-radius: 0%;
margin: 0 auto;
top:0px;
}

