*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:linear-gradient(135deg,#EEF2F7,#DDE8F0);
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

h2{
    margin-bottom:50px;
    font-size:42px;
    color:#2C3E50;
    text-shadow:2px 2px 8px rgba(0,0,0,.1);
}

body>div{
    display:flex;
    justify-content:center;
    gap:35px;
    flex-wrap:wrap;
}

body>div>div{
    background:white;
    padding:20px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    transition:.3s;
}

body>div>div:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 35px rgba(0,0,0,.25);
}

h3{
    margin-bottom:15px;
}

h3 a{
    text-decoration:none;
    color:#2C3E50;
    font-size:24px;
    transition:.3s;
}

h3 a:hover{
    color:#3498DB;
}

img{
    width:170px;
    height:250px;
    border-radius:10px;
    transition:.3s;
}

body>div>div:hover img{
    transform:scale(1.05);
}