/* styles.css */
body {
    background-color: #121212;
    color: #ffffff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    color: #bb86fc;
    text-align: center;
}

p, a {
    text-align: center;
    color: #ffffff;
}

a {
    text-decoration: none;
}

a:hover {
    color: #bb86fc;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px auto;
    width: 90%;
}

.item {
    background-color: #1e1e1e;
    border: 1px solid #333333;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 10px;
    overflow: hidden;
    width: 30%;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
    width: 100%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

button {
    background-color: #bb86fc;
    border: none;
    border-radius: 5px;
    color: #121212;
    cursor: pointer;
    display: block;
    font-size: 16px;
    margin: 15px auto;
    padding: 10px 20px;
    text-align: center;
    width: 80%;
}

button:hover {
    background-color: #3700b3;
}

@media (max-width: 768px) {
    .item {
        width: 45%;
    }
}

@media (max-width: 720px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .item {
        width: 100%;
    }
}
