.glass{
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(11.1px);
    -webkit-backdrop-filter: blur(11.1px);
}
.norm{
    height:fit-content;
    padding: 1cm;
    border-radius: 30px;
}
.shadow-inner{
    box-shadow: 10px 10px 15px -5px rgba(0, 0, 0, 0.5) inset;
}
.shadow{
    box-shadow: 10px 10px 15px -3px rgba(0, 0, 0, 0.5);
}
.heading{
    font-size: 3vw;
    color: #3D5A80;

}
.picture{
    background-image:url(picture.jpeg); 
    background-size: cover;
    width: 70%;
}
.modal-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }
  
  .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    z-index: 1001;
  }
  
  .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
  }

input{
    outline: none;
    border: 0px solid;
    height: 2vw;
    width: 90%;
    font-size: 2vw;
}

h3{
    font-size: 3vw;
}