*{
    margin: 0;
    padding: 0;
    font-size: 10px;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #333;
}

.container{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5em;
}

.container a{
    text-decoration: none;
    color: black;
}

.container .card{
    position: relative;
    width: 30em;
    height: 30em;
    background: #ffffff;
    border-radius: 4em;
    box-shadow: 0 2em 2.5em rgba(0, 0, 0, 0.25);
    transition: 0.5s;
    overflow: hidden;
}

.container .card:hover{
    height: 42em;
     
}

.container .card .imgbox{
    position: relative;
    width: 100%;
    height: 26em;    
    background-image: var(--img);
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center;
    filter: blur(2.5em);
    background-color: bisque;
}

.container .card:hover .imgbox{
    filter: blur(0);
    transition: 0.5s;
}

.container .card .imgbox::before{
    content: '';
    position: absolute;
    bottom: -4em;
    width: 100%;
    height: 8em;
    border-radius: 4em;
    background: #ffffff;
}

.container .card .imgbox::after{
    content: '';
    position: absolute;
    right: 0;
    bottom: 4em;
    width: 8em;
    height: 8em;
    border-radius: 50%;
    background: transparent;
    box-shadow: 7.5em 7em 0 4em #ffffff;
}

.container .card .content {
    position: relative;
    top: -2em;
    z-index: 10;
    padding: 0 4em;
    transition: 0.5s;
}

.container .card .content h3{
    position: relative;
    font-size: 2em;
    color: black;
}

.container .card .content h3 span{
    position: absolute;
    bottom: -1.5em;
    font-weight: 400;
    font-size: 0.65em;
    color: rgb(15, 172, 15);
    opacity: 0.75;
}

.container .card .content p{
    position: relative;
    opacity: 0;
    

}

.container .card:hover .content p{
    position: relative;
    top: 3em;
    opacity: 1;
    
}
footer{
    min-width: 100%;
    min-height: 5em;
    background-color: #ffdd00;
    text-align: center;
    justify-content: center;
}

footer ul{
    height: 100%; 
    width: 100%;  
    list-style: none;
}   


footer ul li{

line-height: 2.5em;
}

footer ul li a{
text-decoration: none;
display: block;
font-size: 1.6em;
color: #000000;
}

footer ul li a:hover{
background-color: #adadad;
color: #ffffff;
}

