* { box-sizing: border-box;
    color: rgb(175, 150, 125);
    font-family: Arial;
    text-align: center;
}

/*--- HEADER ---*/
#header {
    margin: auto;
    width: 100%;
} 
#header h1 { 
    font-size: clamp(1rem, 1vw, 2rem);
    margin: 5px;
}
#navi li {
    font-size: clamp(.5rem, 1vw, 2rem);
}

body {background-color: black;}
h1 {text-align: center;
    border: 0 none;
    margin-top: 0px;
    margin-bottom:0px;
}
p {font-size: 16px;}
hr {
    background-color: rgb(175, 150, 125);
    height: 2px;
    border: 0 none;
    margin-top: 0px;
    margin-bottom:0px;
}

/*--- LISTS ---*/
ul {
    list-style-type: none;
    margin: 0;
    overflow: hidden;
}
li {
    display: inline-block;
    text-align: center;
}
li a {
    margin: 5px;
    text-align: center;
}

/*--- LINKS ---*/
a:link {
    color:rgb(175, 150, 125);
    text-decoration: none;
    font-weight: bold;
}
a:visited {color:rgb(175, 150, 125);}
a:hover {color:white;}
a:active {color:rgb(125, 150, 110);}

/*--- PARALLAX ---*/
.parallax {
    background-image: url("https://jooinn.com/images/dark-stone-surface-2.jpg");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    }
.parallaxBlack {
    background-image: url("https://wallpapercave.com/wp/wp6344300.jpg");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.parallaxPaper {
    background-image: url("https://texturefabrik.com/wp-content/uploads/2020/10/Texture-Fabrik-Kraft-Recycled-Paper-Textures-1_08.jpg");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    color: black;
}

/*--- GALLERY.HTML ---*/
.gallery {
    display: flex;
    justify-content: center;
    margin: 5px;
    border: 1px solid rgb(190, 190, 190);
    float: left;
    color: black;
    max-height: auto;
    max-width: 700px;
}
.gallery:hover {
    border: 1px solid white;
}
.gallery img {
    max-height: auto;
    max-width: 500px;
}
.desc {
    padding: 15px;
    text-align: center;
    color: black;
    font-weight: bold;
}

/*--- CREATOR.HTML ---*/
/*--- RACE CHOOSER ---*/
    /*--- RACE BUTTONS ---*/
    #btnList {
        padding:10px
    }
    .btn{
        border: 1px solid rgb(175, 150, 125); 
        color: rgb(175, 150, 125); 
        padding: 10px 24px; 

        cursor: pointer; 
        display: block; 
        font-weight: bold;
        margin-bottom: 2px;
    }
    #btnList .btn {
        width: 125px; 
    }
    .btn:hover {
        animation-name: coloring;
        animation-duration: .4s;
        animation-fill-mode: forwards;
    }
    @keyframes coloring {
        to {color: white;
            border: 1px solid white;}
    }
    
    /*--- RACE CARDS ---*/
    .cardContainer {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
    }
    .raceCard {
        display: flex;
        justify-content: center;
        max-width: 1000px;
        min-width: 500px;

        border: 2px solid rgb(175, 150, 125); 
        margin: 10px;
    }
    .cardPic img {
        max-height: 419px;
    }
    #cardDesc {
        margin: 5px;
    }
    #cardDesc h1 {
        text-align: center;
    }

/*--- ALIGNMENT ---*/
#alignmentCard {
    border: 2px solid rgb(175, 150, 125);
    margin: 10px;

    width: 500px;
}
span {
    font-weight: bold;
    font-size: 20px;
}

/*--- FINAL CARD ---*/
.cardPaper {
    margin: 5px;
    border: 2px solid rgb(190, 190, 190);
    background-image: url("https://texturefabrik.com/wp-content/uploads/2020/10/Texture-Fabrik-Kraft-Recycled-Paper-Textures-1_08.jpg");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: black;
}
#finalCard {
    display: flex;
    flex-wrap: wrap;
    
    border: 2px solid rgb(175, 150, 125);
    margin: 10px;
    max-width: 1500px;
    min-width: 750px;
}
#finalImg {
    margin: 5px;
}
input {
    border-bottom: 2px solid black;
    font-weight: bold;
    font-size: 20px;
}
.raceTraits{
    border: 2px solid rgb(175, 150, 125);
    width: 100px;
    margin: 5px;
    text-align: center;
}
#statList div{
    margin: 5px;
    border: 2px solid rgb(190, 190, 190);
    background-image: url("https://texturefabrik.com/wp-content/uploads/2020/10/Texture-Fabrik-Kraft-Recycled-Paper-Textures-1_08.jpg");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: black;
    text-align: center;
    width: 125px;
}
#statList li{
    color: black;
    font-weight: bold;
}
.trait {
    border: 2px solid rgb(190, 190, 190);
    margin: 5px;
    width: 500px;
    color: black;
}
.traitHead {
    margin: 3px;
    text-align: center;
    width: 150px;
    border-bottom: 2px solid black;
    font-weight: bold;
    font-size: 16px;
    color: black;
}
.traitDesc {
    margin: 5px;
    color: black;
}

#alignFinal {
    border: 2px solid rgb(190, 190, 190);
    margin: 5px;
    width: 160px;
    height: 50px;
    color: black;
}
#alignment {
    color: black;
    font-weight: bold;
    font-size: 20px;
}

#flex {
    display: flex;
    flex-wrap: wrap;
}