header {
    text-align: center;
    background-color: darkred;
    color: white;
    margin: 0px;
    position: relative;
}

nav {
    display: none;
    padding: 5px;
    background-color: darkred;
    width: 100%;
}

body {
    text-align: center;
    background-color: darkgrey;
}

footer {
    text-align: center;
    background-color: darkred;
    color: white;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: black;
}

#navcheck:checked~nav {
    display: block;
}

#navcheck {
    display: none;
}

label {
    font-size: 2em;
    position: absolute;
    left: 0px;
    top: 0px;
}

img {
    border-radius: 20px;
    padding-top: 5px;
}

header img {
    display: none;
}

ul a {
    color: white;
    text-decoration: none;
    font-size: 20pt;
    padding: 5px;
}

ul a:hover {
    text-decoration: underline;
}

footer a {
    color: white;
    text-decoration: none;
    padding: 5px;
}

footer a:hover {
    text-decoration: underline;
    font-size: 20px;
}

#Markiplier, #Rick, #Woke, #ccc {
    text-align: center;
    border-radius: 20px;
    border: 2px solid black;
    margin: 20px auto;
    background-color: white;
    display: block;
    width: 90%;
    text-decoration: none;
    padding: 0px;
}

#trending, #featured {
    border: 2px solid black;
    margin: 10px;
    background-color: grey;
}

#featured {
    margin-top: 20px;
}

.break {
    font-weight: bold;
}

.title2 {
    text-decoration: underline;
}

.title3 {
    text-decoration: underline;
}

.nav2 {
    padding: 5px;
    text-decoration: underline;
}

.nav2:hover {
    font-size: 16pt;
    text-decoration: none;
}

/* This media query holds the style rules for any screen that is at least 576 pixles wide. */
@media (min-width: 576px) {
    label {
        display: none;
    }

    nav {
        display: inline;
    }

    #trending, #featured {
        width: 90%;
        background-color: darkgrey;
    }

    header img {
        display: block;
        float: left;
        height: auto;
        width: 50px;
    }

    #title {
        width: 30%;
        text-align: center;
        display: inline;
    }

    .title3 {
        font-size: 30pt;
    }

    body {
        background-color: grey;
    }
}

/* This media query holds the style rules for everyscreen that is at least 720 pixels wide. */
@media (min-width: 720px) {
    #trending, #featured {
        width: calc(60%);
        display: inline-block;
    }

    nav {
        display: inline-block;
    }

    header img {
        width: 100px;
    }

    .title3 {
        font-size: 35pt;
    }
}

/* This media query holds the style rules for every screen that is at least 920 pixels wide. */
@media (min-width: 992px) {
    #title {
        width: 40%;
    }

    .title3 {
        font-size: 40pt;
    }
}