


html, body
{ 
    margin: 0px; 
    --BackgroundColor0: purple;
    --BackgroundColor1: rgb(120, 44, 120);
    --BackgroundColor2: rgb(70, 0, 70);
    --ImageContBorderColor: #4f1355;
    --ImageContBackgroundColor1: #db72e2;
    --ImageContBackgroundColor: #fcd1ff;
}
html{
    background-color: var(--BackgroundColor0);
    box-shadow: 0px 0px 20px black inset;

}
.header{
    background-color: var(--BackgroundColor1); 
    width: 100%; 
    height: 80px;      
    box-shadow: 0px 0px 50px black inset;
    
    margin-top: -15px;
    color: rgba(255, 255, 255, 0.845);
    font-size: 50px;
    font-family: Impact, sans-serif;
    font-weight: bolder;
    transform: translate(0px, 15px);
    text-shadow: 0px 0px 10px black;
    text-align: center; 
    padding-top: 20px;
}
.Button1{
    background-color: transparent;
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.1s;
    font-size: large;
    border-color:  var(--BackgroundColor0);
    border-radius: 4px;
    text-align: center;
}
.Button1:hover{
    color: white;
    text-shadow: 0px 0px 5px black;
    box-shadow: 0px 0px 5px black inset;
}
.Button1:active{
    color: white;
    text-shadow: 0px 0px 5px black;
    box-shadow: 0px 0px 5px white inset;
    transition: all 0.025s;
}
.nav-menu{
    width: 100%; 
    text-align: center; 
    background-color: var(--BackgroundColor1); 
    color: white;
    box-shadow: 0px 0px 10px black inset;
    > div{
        margin: 0px; 
        margin-top: 15px; 
        display: flex; 
        justify-content: center;
    }
}
.nav-Button{
    width: 120px;
    height: 50px;
    background-color: transparent;
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.5s;
    font-size: 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}
.nav-Button:hover {
    color: white;
    text-shadow: 0px 0px 5px black;
    > .nav-Button-sub{
        height: 6px;
        background-color: var(--BackgroundColor2);
    }
}
.nav-Button-sub{
    transition: all 0.1s;
    width: 100%;
    height: 0px;
    background-color: transparent;
    border-radius: 5px;
}
.TextContainer{
    transition: all 0.5s;
    box-shadow: 0px 0px 10px black; 
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
    width: 80%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}
.TextContainer:hover{
    box-shadow: 0px 0px 10px white; 
    h1{
        font-size: 30px;
        width: 90%;
    }
    p{
        font-size: 20px;
        width: 90%;
    }
}
.TextContainer > h1, .TextContainer > p{
    transition: all 0.5s;
    font-family: 'Trebuchet MS';
    color: white;
    text-shadow: 0px 0px 5px black;
    width: 75%;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 10px;
}
.text{
    font-family: 'Trebuchet MS';
    color: white;
    text-shadow: 0px 0px 5px black;
    margin: -5px;
}
.dropdown{
    width: 120px;
    height: 50px;
    background-color: transparent;
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.5s;
    font-size: 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}
.dropdown:hover{
    > .nav-Button-sub{
        height: 6px;
        background-color: var(--BackgroundColor2);
    }
    > .dropdown-content{
        display: inline-block;
        height: max-content;
        justify-content: center;
    }
    .dropdown-content-text{
        transition: all 0.5s;
        color: white;
        text-shadow: 0px 0px 5px black;
    }
    .dropdown-content-subtext{
        transition: all 0.5s;
        color: white;
        text-shadow: 0px 0px 5px black;
    }
    .shoeDrop{
        display: flex;
    }
}
.dropdown-content{
    display: none;
    transition: all 0.1s;
    position: absolute;
    background-color: var(--BackgroundColor2);
    z-index: 1;
    box-shadow: 0px 0px 10px black;
    transform: translate(-50%, 0px);
    height: 0px;
    border-radius: 5px;
    text-align: center;
}
.dropdown-content-text, .dropdown-content-subtext{
    transition: all 0.1s;
    color: transparent;
    margin: 8px;
}
.dropdown-content-text:hover, .dropdown-content-subtext:hover{
    transition: all 0.1s;
    font-size: 25px;
}
.dropdown-content-displaytext{
    margin: 8px;
    color: white;
    text-shadow: 0px 0px 5px black;
    text-align: center;
}
.dropdown-content-subtext{
    display: flex;
    flex-direction: column;
    width: 100%;
    > .dropdown-content-sub{
        display: none;
        font-size: 20px;
    }
}
.dropdown-content-subtext:hover{
    > .dropdown-content-sub{
        display: inline-block;
        transition: all 0.1s;
        position:absolute;
        left: 100%;
        background-color: var(--BackgroundColor2);
        z-index: 1;
        box-shadow: 0px 0px 10px black;
        border-radius: 5px;
        text-align: center;
        width: 200px;
    }
}

.shoeDrop{
    transition: all 0.1s;
    display: none;
    margin-left: auto;
    margin-right: auto;
}
.hidden {
    display: none;
}
.footer {
    > div{
        margin: 0px; 
        height: 100px; 
        display:flex; 
        flex-direction: row; 
        justify-content: space-between;
        > #footerLeft{
            margin-left: 10px; 
        }
        > #footerRight{
            margin-right: 10px;
        }
    }
} 
.footerText{
    font-size: 12px; 
    margin-top: 10px;
}
.ImageContainer{
    display: flex;
    box-shadow: 0px 0px 10px black;
    justify-content: space-between;
    text-align: center;
    padding: 10px;
    width: 80%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}
.ImageContainer {
    > img{
        height: 100%;
        transition: all 0.5s;
        margin: 5px;
        box-shadow: 0px 0px 10px black;
        ~ p:hover{
            color: rgb(0, 0, 0);
            transform: translate(-92px, calc(100% - 15px));
            cursor: pointer;
            > span{
                border-color: var(--ImageContBorderColor);
                background-color: var(--ImageContBackgroundColor1); 
                box-shadow: 0px 0px 4px white;
            }
        }   
    }
    > img:hover ~ p{
        color: black;
        transform: translate(-92px, calc(100% - 15px));
        > span{
            border-color: var(--ImageContBorderColor);
            background-color: var(--ImageContBackgroundColor);
        }
    }
    > div{
        box-shadow: 0px 0px 10px black;
        width: 100%;
        margin: 5px;
        margin-right: 10px;
        height: auto;
    }
    > p{
        height: 100%;
        transition: all 0.3s;
        width: 0px;
        text-wrap: nowrap;
        transform: translate(-92px, -5px);
        color: transparent;
        > span{
            transition: all 0.3s;
            padding: 2px;
            border-color: transparent;
            border-width: 2px;
            border-style: solid;
            background-color: transparent;
        }
    }
}
.TextContainer:hover ~ img{
    box-shadow: 0px 0px 10px white;
}
p, h1 {
    > .yt { color: #ff3a3a; }
    > .itch { color: #ff8fa2; }
    > .terraria { color: #7eff5e; }
    > .crawdad105 { color: #ffffff; text-shadow: 0px 0px 2px white; }
    > .cModLoader { color: #716CCD; font-weight: bolder; text-shadow: 0px 0px 4px #000000, 0px 0px 1px white; }
}
.VertTextContGroup{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    width: 82%;
    margin: auto;
    padding: 10px;
    > .TextContainer{
        max-width: 50%;
        margin: 10px;
        margin-top: 0px;
    }
}
/*
a{
    color: #e040e7;
    text-shadow: 0px 0px 5px #0700ff;
}
*/
#newItem::after{
    content: "NEW";
    position: absolute;
    transform: translate(-88px, -36px) rotate(348deg);
    font-size: 16px;
    color: yellow;
}
.CrawdadNews{
    background-color: rgb(220, 220, 220);
    margin-top: 10px;
    > #news_top{
        transform: translate(0px, -20px);
        background: linear-gradient(180deg, transparent, rgb(220, 220, 220));
        height: 20px;
    }
    > .news_fullbar{
        height: 2px;
        background-color: black;
    }
    > .news_bar{
        height: 2px;
        background-color: black;
        width: 90%;
        justify-self: center;
    }
    > #news_title{
        text-align: center;
        font-size: 60px;
        font-weight: 700;
        text-shadow: 0px 3px 3px black;
        letter-spacing: 6px;
    }
    > #news_issue{
        width: 90%;
        justify-self: center;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        font-weight: 600;
        padding: 5px;
    }
    > #news_body{
        display: flex;
        justify-content: space-around;
        width: 85%;
        justify-self: center;
        flex-wrap: wrap;
        > .section_Text{
            > .section_header{
                font-weight: 900;
                font-size: 64px;
                text-align: justify;
                text-align-last: justify;
            }
            > .section_body{
                font-size: 18px;
                letter-spacing: 2px;
                word-spacing: 4px;
                text-align: justify;
            }
        }
        > .section_image{
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-color: #00000020;
            overflow: hidden;
            > img{
                width: 100%;
                box-shadow: 0px 0px 20px 2px;
            }
        }
        > .section_bar{
            height: 1px;
            background-color: black;
            width: 90%;
            margin-top: 10px;
            margin-bottom: 10px;
        }
        > .section_brief{
            > .section_header{
                font-weight: 900;
                font-size: 34px;
                text-align: justify;
                text-align-last: justify;
            }
            > .section_body{
                font-size: 16px;
                letter-spacing: 2px;
                word-spacing: 4px;
                text-align: justify;
            }
        }
        > .section_brief_spacer{
            height: 200px;
            width: 1px;
            background-color: black;
            margin-top: 10px;
            margin-bottom: 10px;
        }
    }
    > #news_footer{
        width: 90%;
        justify-self: center;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        font-weight: 600;
        padding: 5px;
    }
}