@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

body {
    background-color: #f4f1ea; 
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    padding: 40px;
}

.card {
    background-color: #FF8DA1;
    max-width: 750px;
    width: 100%;
    border-radius: 20px; 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease; 
}

.card:hover {
    transform: scale(1.02);
}

img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
}

h1 {
    margin-bottom: 10px;
}

.email {
    color: #6a5acd;
    font-weight: 500;
    margin-bottom: 20px;
}

.info p {
    margin: 8px 0;
}
