*{
    margin: 0;
    padding: 0;
}
body{
    background-color: aqua;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: Arial, sans-serif;
}
.box{
    display: block;
    width: 300px;
    padding: 20px;
    border: 4px solid black;
    border-radius: 5%;
    box-shadow: 2px 5px 7px black;
    text-align: center;
    background-color: rgba(240, 248, 255, 0.932);
    backdrop-filter: blur (10px);
    top: 50%;
    animation: 4s;
    animation: box 5s infinite;
    transition: 0.3s ease;
}
@keyframes box{
    0%{box-shadow: 2px 5px 10px black;}
    50%{box-shadow: 2px 6px 10px white}
    100%{box-shadow: 2px 5px 10px black;}
}
.box:hover{
    transform: scale(1.05);
    cursor: pointer;
}
.box h1{
    color: black;
    display: flex;
    justify-content: center;
    font-size: 23px;
    padding-bottom: 10px;
}
.box img{
    width: 300px;   
    height: 300px;
}