*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
}

#video-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 20px;
}

#video-list {
    display: grid;
    gap: 20px;
    margin: 1vw;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    grid-template-columns: repeat(3, 1fr);
}

.img-video {
    width: 30vw;
    border-radius: 8px;
}

.title-video {
    height: 40px;
    padding: 5px;
    color: #333;
    margin: 20px;
    font-weight: bold;
}

.video-card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.link-video{
    background-color: #ffb1d8;
    border-radius: 8px;
}

.link-video:hover{
    text-decoration: none;
    opacity: .7;
}

footer {
    text-align: center;
    background-color: #333;
    color: white;
    padding: 10px;
}

@media (max-width: 960px) {
    #video-list{
        grid-template-columns: repeat(2, 1fr);
        margin: 4vw;
    }

    .img-video {
        width: 40vw;
    }
}

@media (max-width: 460px) {

    h1{
        font-size: 28px;
    }

    h2{
        font-size: 24px;
    }

    #video-list{
        grid-template-columns: 1fr;
    }

    .img-video {
        width: 80vw;
    }
}