.video-thumbnail {
    display: block;
    max-width: 300px;
    max-height: 200px;
    width: auto;
    height: auto;
    border-radius: 10px;

    /*
    outline-style: solid;
    outline-color: red;
    */
}

.video-container {
    display: flex;
    margin-bottom: 30px;
}

.video-info {
    width: 100%;
    padding-right: 15px;
    position: relative;
}

.video-title {
    margin-left: 15px;
}

.video-date-views {
    margin-left: 75px;
}

.video-creator-info {
    display: inline-flex;
    align-items: center;
    width: 100%;
    padding-left: 15px;
}

.video-profilepicture {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.video-close-button {
    position: absolute;
    visibility: hidden;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 30px;
    height: 30px;
    top: 0;
    left: 95%;
    z-index: 5;
    border-radius: 20%;
    border: none;
    font-size: 36px;
    color: #6d6d6d;
    background-color: transparent;
    opacity: 60%;
}

.video-close-button::before {
    content: "╳";
}

.video-close-button:hover {
    color: #000000;
    background-color: lightgray;
}

.video-info:hover .video-close-button {
    visibility: visible;
}

#video-list {
    list-style-type: none;
    padding: 0px;
}


/* https://perfectmotherfuckingwebsite.com/fuckingstyle.css */
body {
    max-width: 700px;
    margin: 40px auto;
    padding: 0 10px;
    font: 18px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    color: #444
}

h1,
h2,
h3 {
    line-height: 1.2
}

@media (prefers-color-scheme: dark) {
    body {
        color: #c9d1d9;
        background: #0d1117
    }

    a:link {
        color: #58a6ff
    }

    a:visited {
        color: #8e96f0
    }
}