body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%);
}

.container {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    max-width: 700px;
    width: 100%;
}

.heading {
    font-size: 24px;
    color: #ff69b4;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.quote {
    font-size: 18px;
    color: #ff1493;
    margin-bottom: 20px;
    font-style: italic;
}

.image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

button {
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s ease, transform 0.2s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

button:hover {
    background: linear-gradient(45deg, #ff1493, #c71585);
    transform: scale(1.05);
}

button span {
    margin-left: 10px;
    font-weight: bold;
}

button i {
    font-size: 20px;
}
