body {
    margin: 0;
    font-family: sans-serif;
    background: #f4f4f4;
    color: #333;
}

.hero {
    background: url('media/background.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 4px #000;
    font-size: 2em;
}

section {
    padding: 20px;
    max-width: 500px;
    margin: auto;
    box-sizing: border-box;
}

.description {
    background: #fff;
}

.video-section {
    background: #000;
}

.comments textarea {
    width: 100%;
    height: 80px;
    margin-top: 10px;
}

.comments button {
    margin-top: 10px;
    padding: 10px;
    width: 100%;
}

.comment-list {
    margin-top: 20px;
}

.comment {
    background: #e9e9e9;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    background: #fff;
    padding-bottom: 30px;
}

.gallery img {
    width: 30%;
    height: auto;
    border-radius: 5px;
}

