
body {
    display: flex;
    align-items: center; 
    justify-content: center;
    height: 100vh;
    margin: 0;
    background: black;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}


.card {
    display: flex; 
    align-items: center; 
    border: 1px dotted blue;
    padding: 20px;
    width: 400px; 
    background: #ddebf8;
    color: #2b2839;
    border-bottom: solid 6px #d8cefe;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(173, 216, 230, 0.5);
    transition: all 0.4s ease;
    cursor: pointer;
    gap: 20px;
}


.card:hover {
    background: #e7f1ff;
    box-shadow: 0 0 25px rgba(100, 149, 237, 0.8);
    transform: scale(1.03);
}

.img {
    width: 150px;
    transition: transform 0.4s ease;
}


.img:hover {
    transform: scale(1.1);
}

.card-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
