body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f6115d;
    text-align: center;
}

.center-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.center-image {
    width: 250px; /* Adjust size */
    height: auto;
    border-radius: 20px;
    margin-bottom: 20px;
}
.center-thirdimage {
    width: 150px; /* Adjust size */
    height: auto;
    border-radius: 20px;
    margin-bottom: 20px;
}
button {
    padding: 10px 20px;
    margin: 10px;
    font-size: 16px;
    cursor: pointer;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 5px;
    transition: 0.3s;
}

button:hover {
    background-color: #f50057;
}

