/* This is a free layout for anyone to use!
All I ask is that you keep this credit in-tact, or that you put my website link
(https://nonkiru.art) somewhere on your site. 

Otherwise, edit this as much as you'd like! 

Last Updated: 8th December 2024 */

/* These are the default colour codes for the layout.
Changing the colour code here will update it for any element that uses it. */


body { 
    font-size: 18px;
    line-height: 20px;
    color: red;
    font-family: courier, verdana;
    background-image: ;
    background-color: black;

}


a {
    color: salmon;
    transition: 0.1s all ease-in-out;
}



a:hover {
    color: orange;
}

h1 {
    font-size: 20px;
}

h2 {
    font-size: 22px;
}

h3 {
    font-size: 25px;
}

h4 {
    font-size: 28px;
}




.container {
    background: white;
    border: 1px solid red;
    border-radius: 2px;
    width: 600px;
    box-shadow: 2px 2px 0px grey;
    margin: 5px auto;

}

.containersmall {
    background: white;
    border: 1px solid red;
    border-radius: 2px;
    width: 200px;
    box-shadow: 2px 2px 0px grey;
    margin: 5px auto;
}

.containerdouble {
    width: 600px;
    margin: auto;
    display: flex;
}




.box_header {
    border: 1px solid orange;
    background-color: lightgrey;
}

.box_header img:hover {
    filter: brightness(115%);
    cursor: pointer;
}



.red {
    color: red;
    font-weight: bold;
}

.salmon {
    color: salmon;
    font-weight: bold;
}

.orange {
    color: orange;
    font-weight: bold;
}

.gold {
    color: gold;
    font-weight: bold;
}

.yellow {
    color: yellow;
    font-weight: bold;
}

.darkred {
    color: #c00020;
    font-weight: bold;
}



@media only screen and (max-width: 890px) {
    .container {
        position: static;
        width: 100%;
        margin: unset;
        margin-bottom: 5px;
    }
}
