#first-content {
    display: flex;
    justify-content: space-between;
}

#welcome {
    width: 31.25rem;
}

#animated-img {
    width: 25rem;
    margin-right: 10%;
    border: 2px solid white;

}

#videos-content {
    margin-top: 2.5rem;
    width: 100%;
}

#videos-content > h2 {
    margin-bottom: 1.25rem;
}

.videos {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}
.video {
    border: 2px solid #ffffff;
    width: 22.25rem;
    height: 12.5rem;
    margin: 0 1.25rem 1.25rem 0;
    background: black;
    transition-delay: 50ms;
    text-decoration: none;
}

.more {
    background: linear-gradient(0, #363636, #171717);
    display: flex;
    justify-content: center;
    align-items: center;
}

.more:hover {
    background: linear-gradient(0, #3d3d3d, #1c1c1c);
    transition-delay: 50ms;
}

.more > h2 {
    transition-delay: 50ms;
    color: #AAAAAA;

}

.more:hover > h2 {
    color: white;
    transition-delay: 50ms;
}