body{
    background-image: url("blurred.png");
    background-size: cover;
    background-attachment: fixed;
   backdrop-filter: blur(5px);
    
}
*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
nav{
    height: 80px;
    margin-top: 20px;
    background-color:  rgba(244, 162, 255, 0.5);
}
label.logo{
    font-size: 3vw;
    line-height: 80px;
    padding: 0 100px;
    font-weight: bold;
    color: white;
}
nav ul{
    float: right;
    margin-right: 50px;
    margin-top: 5px;
    
}
nav ul li{
    display: inline-block;
    line-height: 80px;
    margin: 0 30px;
    position: relative;
}
nav ul li a{
    font-size: 2vw;
    text-transform: uppercase;
    font-weight: bold;
    color: white;
}
nav ul li:after{
    content: '';
    height: 3px;
    width: 0%;
    background: #009688;
    position: absolute;
    left: 0;
    bottom: 25px;
    transition: 0.5s;

}
nav ul li:hover:after{
    width: 100%;
}
div{
   width: 100%;
   text-align: center;
}
div.banner{
    float: left;
    color: white;
    margin-top: 20px;
}
.img{
    float: left;
    width: 400px;
    position: relative;
    margin-left: 100px;
}
.img1{
    float: right;
    width: 400px;
    position: relative;
    margin-right: 100px;
    
}
.img2{
    float: left;
    width: 400px;
    position: relative;
    margin-left: 100px;
    margin-top: 10px;
}
.img3{
    float: right;
    width: 400px;
    position: relative;
    margin-right: 100px;
    margin-top: 10px;

}
.img4{
    float: left;
    width: 400px;
    position: relative;
    margin-left: 100px;
    margin-top: 10px;

}
.img5{
    float: right;
    width: 400px;
    position: relative;
    margin-right: 100px;
    margin-top: 10px;
}
.img6{
    float: left;
    width: 400px;
    position: relative;
    margin-left: 100px;
    margin-top: 10px;

}
.img7{
    float: right;
    width: 400px;
    position: relative;
    margin-right: 100px;
    margin-top: 10px;

}
.theImage{
    display: block;
    width: 100%;
}
.img_overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(31,31,31,0.5);
    color: white;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.25s;
    opacity: 0;
    border-radius: 10px;


}
.img_overlay:hover{
    opacity: 1;
}
.img_overlay>*{
    transform: translateY(25px);
    transition: transform 0.25s;

}
.img_overlay:hover>*{
    transform: translateY(0px);
}
.img_descript{
    margin-top: 0.5em;
}
span.span1{
    margin-left: 120px;
    color: gold;
    font-weight: bold;
    letter-spacing: 2px;
}
span.span2{
    float: right;
    margin-right: 140px;
    color: gold;
    font-weight: bold;
    letter-spacing: 2px;
}
img{
    border-radius: 10px;
}