/* style.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #fff;
    background-color: #000;
    overflow-x: hidden;
}

#background-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

#background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#side-panel {
    position: fixed;
    top: 20%;
    right: 10px;
    width: 150px;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    z-index: 10;
}

#side-panel img {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 5px;
}

#side-panel button {
    display: block;
    width: 100%;
    margin: 5px 0;
    padding: 10px;
    background: #00ffcc;
    border: none;
    color: #000;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
}

#side-panel button:hover {
    background: #009977;
}

header {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #00ffcc;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.grid-item {
    position: relative;
    overflow: hidden;
}

.grid-item img {
    width: 100%;
    height: auto;
    transition: transform 0.5s;
}

.grid-item:hover img {
    transform: scale(1.1);
}

footer {
    text-align: center;
    padding: 10px;
    background: rgba(0, 0, 0, 0.7);
}