@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
 text-decoration: none;
list-style: none;
box-sizing: border-box;
font-family: 'Poppins',sans-serif;
}
body{
font-size: 1.1em;
}
.navbar{
background-color: #0f7cd4;
height: 80px;
width: 100%;
box-shadow: 5px 10px 30px #0f7cd4;
}
label.logo{
color: white;
font-size: 20px;
line-height: 80px;
padding: 0 30px;
font-weight: bold;
}
.navbar ul{
float: right;
margin-right: 20px;
}
.navbar ul li{
display: inline-block;
line-height: 80px;
margin: 0 5px;
}
.navbar a {
color: white;
font-size: 17px;
padding: 7px 13px;
border-radius: 3px;
}
span{
display: none;
}
.side {
height: 100%;
width: 0;
position: fixed;
z-index: 1;
top: 0;
 right: 0%;
float: right;
overflow: hidden;
background-color: #3e65da;
box-shadow: #3e65da 0px 5px 15px;
 padding-top: 60px;
}
.side a {
padding: 8px 8px 8px 32px;
text-decoration: none;
font-size: 25px;
color: white;
display: block;
}
.side .closebtn {
position: absolute;
top: 0;
color: white;
left: -20%;
font-size: 36px;
margin-left: 50px;
}
.title{
text-align: center;
padding-top: 2rem;
padding-bottom: 1rem;
}
.border{
text-align: center;
  width: 100%;
  height: 4px;
  background: #fc5c65;
}
.gallery{
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
.gallery .image{
  width: 25%;
  padding: 7px;
}
.gallery .image strong{
  display: flex;
  width: 100%;
  overflow: hidden;
}
.gallery .image img{
  width: 100%;
border-radius: 20px;
  vertical-align: middle;
  transition: all 0.3s ease;
}
.gallery .image:hover img{
  transform: scale(1.1);
}
footer {
    background: #3e65da;
    padding: 20px;
    color: white;
    text-align: center;
}
@media only screen and (max-width: 700px){
span{
display: block;
font-size: 25px;
cursor: pointer;
 float: right;
 color: white;
 position: absolute;
top: 3%;
right: 2%;
}
.navbar a{
display: none;
}
.gallery .image{
width: 100%;
}
}