body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: linear-gradient(to bottom, #f73e3a, #d3eeb0);
    color: #000000;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

h1 {
    font-size: 3em;
    margin: 0.5em 0;
}

p {
    font-size: 1.5em;
    margin-bottom: 1em;
}

.images img {
    width: 100px;
    height: auto;
    margin: 0 10px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.images {
    margin: 1em 0;
}

.video-button,
.back-button {
    font-size: 1.2em;
    color: #ffffff;
    background-color: #007bff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
    display: inline-block;
}

.video-button:hover,
.back-button:hover {
    background-color: #0056b3;
}

video {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
