.links {
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: white;
    width: 100vw;
    margin-top: 5vh;
    margin-bottom: 5vh;
}

.definition {
    color: white;
    font-family: sans-serif;
    margin: 5vh 10vw;
    text-align: center;
    font-weight: lighter;
}

/* ---------------------------- */

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-right: 5vw;
    margin-left: 5vw;
}

.video-div {
    display: flex;
    flex-direction: column;
    margin: 1vh 2vw;
}

.video-title {
    display: block;
    font-family: sans-serif;
    color: white;
    margin-bottom: 1vh;
    margin-top: 2vh;
    font-size: larger;
}

.video {
    width: 560px;
    height: 350px;
    border: none;
}

@media (max-width: 1300px) {
    .video-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* ---------------------------- */

.list {
    font-family: sans-serif;
    margin-top: 5vh;
    width: 80vw;
}

.list-title {
    color: hsl(207.04, 31%, 44.9%);
}

.list-item {
    color: hsl(208.51, 70.62%, 26.88%);
}

.list-link {
    text-decoration: none;
    color: hsl(208.51, 70.62%, 26.88%);
    font-size: larger;
}

.list-link:hover {
    text-decoration: underline;
}

.last {
    margin-bottom: 7vh;
}