h1, h2, h3, p {

 margin: 0;

 padding: 0;

}

img {

 display: block;

 max-width: 100%;

 height: auto;

}

* {

 box-sizing: border-box;

}

/* ----- */

h1, h2, h3 {
    text-align: center;
    font-family: "Protest Revolution", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    color: rgb(255, 10, 10);
    filter: drop-shadow(0 0 4px black);
    transition: all 500ms ease-in-out;
}

header h1 {
    font-family: "Trade Winds", sans-serif;
    flex: 3;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

header img {
    flex: 1;
    width: 9em;
    transition: all 500ms ease-in-out;
}

header img:hover {
    transform: rotate(-15deg);
}

h1:hover, h2:hover {
    filter: drop-shadow(0 0 0.5rem rgb(255, 10, 10));
}

p {
    padding-bottom: 0.75em;
}

body {
    margin: auto;
    padding: 3em;
    padding-top: 4em;

    font-family: "Lacquer", system-ui;
    font-weight: 400;
    font-style: normal;
    color: white;

    background-color: rgb(15, 15, 15);
    background-image: url(images/broken_noise.webp);
}

ul, ol {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-inline-start: 0;
}

ul li a, ol li a {
    display: flex;
    text-align: center;
    background-color: #ff0000;
    margin: 0.5em;
    padding: 0.75em;
    text-decoration: none;
    color: rgb(255, 255, 255);
    width: 300px;
}

ul li a:hover, ol li a:hover, ul li a:active, ol li a:active {
    background-color: #8f0000;
}

a {
    color: #ff0000;
}

.icons {
    color: rgb(255, 10, 10);
}

ul, ol {
    list-style-type: none;  
}


footer {
    font-family: "Lacquer", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: small;
    color: white;
}

img {
    filter: drop-shadow(0 0 0.5rem rgb(255, 10, 10));
    display: block;
    margin: auto;
}

aside {
    padding-bottom: 2em; 
    padding-top: 2em;
}

section {
    flex: 1;
    padding-bottom: 1.5em;
}

@media only screen and (min-width: 600px) {
    header, #container {
        max-width: 1020px;
        margin: auto;
    }

    footer {
        text-align: center;
    }

    body {
        width: 1200px;
    }
    
    section {
        flex: 1;
        padding-bottom: 1em;
    }

    main {
        display: flex;
        align-items: center;
        margin-top: 4em;
        gap: 20px;
    }  

    aside {
        padding: 1em;
    }

    ul li a, ol li a {
        display: flex;
        text-align: center;
        background-color: #ff0000;
        margin: 0.5em;
        padding: 0.75em;
        text-decoration: none;
        color: rgb(255, 255, 255);
        width: auto;
    }

    header {
        display: flex;
        justify-content: center;
    }

    header h1 {
        font-size: 3em;
    }
}



