body {
    background-color: black;
    color: white;
    font-family: 'Cutive Mono', monospace;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

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

.video-container {
    border: 1px solid #e26b6b;
    padding: 10px;
    aspect-ratio: 16 / 9;
    min-width: 400px;
}

iframe {
    width: 100%;
    height: 100%;
    background-color: black;
}

h1 {
    color: #e26b6b;
    text-align: center;
}