/* main.css */
*, ::before, ::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html, body {
    width: 100%;
    overflow-x: hidden;
    background: #fff0f0;
}
body {
    font-family: sans-serif;
    text-align: center;
}
#media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
    border-radius: 20px;
}
img, video {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: opacity 0.5s ease;
    display: block;
}
h1 {
    margin-bottom: 1rem;
    color: #b15b5b;
}
#playButton {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    font-size: 80px;
    color: white;
    cursor: pointer;
    z-index: 2;
    opacity: 0.8;
}

#playButton:hover {
    opacity: 1;
}
@media (max-width: 600px) {
    body {
        padding: 1rem;
    }
}