@media (max-width: 600px) {
    #directory {
        flex-direction: column;
        text-align: center;
    }

}

@media (max-width: 900px){
    .image-container{
        flex-direction: column;
    }
}

html {
    background-color: #2e3440;
}

* {
    color: whitesmoke;
}

body {
    max-width: 75%;
    margin: auto;
}

h1 {
    text-align: center;
}

header+* {
    margin-top: 20px;
}

header>h1~h2 {
    text-align: center;
    margin: 0;
}

[download] {
    font-style: italic;
}

h2 {
    text-align: center;
}

article {
    border: 2px rgb(127, 155, 255) solid;
    border-radius: 5px;
    padding: 10px;
    background-color: #3b4252;
}

.center {
    text-align: center;
}

#directory {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 0;

}

#directory li {
    list-style: none;
    padding: 10px;
    /* border: 1px solid black; */
    border-radius: 3px;
    margin: 5px;

    background-color: rgb(127, 155, 255);

}

#directory li a {
    color: #2e3440;
    text-decoration: none;

}

#directory li a:visited {
    color: #2e3440;

}

.category>ul>li {
    list-style-type: "🌟 ";
}

input,
textarea,
button {
    color: black;
    margin-bottom: 10px;

}

form {
    margin: auto;
    text-align: center;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

}

#media-container {
    display: grid;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    place-items: center;
    place-content: center;


}

.image-container>* {
    margin: 5px;
    border: 2px rgb(127, 155, 255) solid;
    padding: 10px;

}


h1:hover,
h2:hover,
h3:hover,
p:hover,
span:hover,
a:hover,
li:hover,
h4:hover {
    font-weight: 600;

}

table,
tr,
td {
    border: 2px white solid;

}

table {
    margin: auto;
    max-width: 95%;
}


header {
    background-color: #333;
    background-blend-mode: multiply;
    background-image: url("splash.png");
    background-size: 100%;
}