body {
    margin: 0;
    box-sizing: border-box;
    background-color: rgb(31, 31, 31);
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
}

header {
    background-color: rgb(20, 20, 20);
    padding: 10px;
    border-bottom: 2px solid red;
    display: flex;
    align-items: center;
}

header img {
    width: 100px;
}

header ul {
    display: flex;
    gap: 50px;
    margin: auto;
}

header ul li {
    list-style-type: none;
}

header ul li a {
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: .8s;
}

header ul li a:hover {
    color: red;
}

header button {
    margin: 10px;
    border: none;
    padding: 10px 20px;
    color: white;
    background-color: red;
    border-radius: 10px;
}

h1 {
    color: rgb(255, 73, 73);
    text-align: center;
    margin-top: 80px;
}

p {
    text-align: center;
    color: rgb(255, 121, 121);
    font-size: 18px;
}

span {
    color: red;
    font-weight: bold;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

hr {
    margin: 50px 350px 0 350px;
    border-color: red;
}

#container {
    display: flex;
    flex-direction: row;
    gap: 60px;
    margin-top: 30px;
}

#wraithloop, #grimwood {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid red;
    padding: 80px 50px;
    background-color: rgb(20, 20, 20);
    border-radius: 20px 0 20px 0;
    transition: .8s;
}

#wraithloop:hover, #grimwood:hover {
    transform: scale(1.03);
    box-shadow: 0 0 30px red;
    border-radius: 0 20px 0 20px;
}

h3 {
    color: red;
    font-size: 24px;
    text-align: center;
}

#wraithloop img {
    width: 200px;
}

div a {
    color: white;
    padding: 10px 20px;
    background-color: red;
    text-decoration: none;
    border-radius: 10px;
    margin-top: 20px;
    transition: .8s;
}

div a:hover {
    transform: scale(1.1);
}

#grimwood img {
    width: 200px;
}

iframe {
    box-shadow: 0 0 30px red;
    border-radius: 10px;
    border: 2px solid red;
    transition: .8s;
}

iframe:hover {
    scale: 1.01;
    box-shadow: 0 0 10px red;
}

#socials ul {
    list-style-type: none;
    display: flex;
    gap: 50px;
}

#socials ul li a img {
    width: 50px;
    height: 50px;
    transition: .8s;
}

.tt:hover {
    filter: drop-shadow(0 0 10px aqua);
}

.dc:hover {
    filter: drop-shadow(0 0 10px rgb(47, 93, 179));
}

.yt:hover {
    filter: drop-shadow(0 0 10px red);
}

footer {
    margin-top: 40px;
    background-color: rgb(20, 20, 20);
    border-top: 2px solid red;
    display: flex;
    flex-direction: row;
    align-items: center;
}

footer a {
    transition: .8s;
    color: white;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
}

footer ul {
    list-style-type: none;
}

footer ul li {
    margin: 15px;
}

footer img {
    height: 100px;
    position: absolute;
    left: 47%;
}

@media only screen and (min-width: 320px) {
    header ul, header button {
        display: none;
    }
    
    header {
        justify-content: center;
    }

    hr {
        margin: 50px 20px 50px 20px;
    }

    #container {
        flex-direction: column;
    }

    #wraithloop, #grimwood {
        padding: 60px 30px;
    }

    footer img {
        height: 80px;
    }

    iframe {
        height: 200px;
        width: 300px;
    }
}

@media only screen and (min-width: 425px) {
    header button {
        display: block;
    }

    header {
        justify-content: left;
        gap: 150px;
    }

    #wraithloop, #grimwood {
        padding: 80px 50px;
    }

    iframe {
        height: 230px;
        width: 350px;
    }
}

@media only screen and (min-width: 768px) {
    header button {
        display: none;
    }

    header ul {
        display: flex;
    }

    header {
        gap: 10px;
    }

    #container {
        flex-direction: row;
    }

    #wraithloop, #grimwood {
        padding: 80px 50px;
    }

    iframe {
        height: 370px;
        width: 680px;
    }

    footer img {
        left: 43%;
    }
}

@media only screen and (min-width: 1440px) {

    header ul, header button {
        display: flex;
    }

    header {
        gap: 10px;
    }

    #about p {
        font-size: 22px;
    }

    #container {
        flex-direction: row;
    }

    #wraithloop, #grimwood {
        padding: 100px 60px;
    }

    #wraithloop a, #grimwood a {
        padding: 15px 40px;
        font-size: 18px;
    }

    #wraithloop img, #grimwood img {
        width: 300px;
    }

    h3 {
        font-size: 28px;
    }

    iframe {
        height: 370px;
        width: 680px;
    }

    footer img {
        left: 45%;
    }
}