body {
    background-color: #222;
    color: #fff;
    font-family: Lucida Console, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #111;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0px auto;
    padding: 20px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

img {
    max-width: 100%;
    height: auto;
    border: 1px solid #333;
    border-radius: 10px;
}

img:hover {
    opacity: 0.8;
    box-shadow:
        rgba(255, 102, 51, 0.7) 0px 4px 55px,
        rgba(255, 102, 51, 0.7) 0px -12px 30px,
        rgba(255, 102, 51, 0.7) 0px 4px 6px,
        rgba(255, 102, 51, 0.7) 0px 6px 8px,
        rgba(255, 102, 51, 0.7) 0px -3px 5px;

}

.description {
    margin-top: 20px;
    line-height: 1.6;
}

.links {
    margin-top: 20px;
}

.link-btn {
    display: inline-block;
    background: rgba(255, 102, 51, 0.5);
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 10px;
    border: 2px solid rgba(255, 102, 51, 1);
}

.link-btn:hover {
    background-color: rgba(255, 102, 51, 0.7);
}

hr {
    opacity: 0.1;
    height: 0.01px;
}

ul li {
    line-height: 1.5;
    /* Adjust this value as needed */
}

.video-section {
    text-align: center;
    margin-top: 40px;
}

.video-container {
    display: inline-block;
    position: relative;
    max-width: 800px;
    /* Adjust this value as needed */
}

video {
    width: 90%;
    height: auto;
    border-radius: 10px;
}
