


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;
}
.nav-menu > 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 > a{
    color: inherit;
    font: inherit;
    text-decoration-line: none;
}
.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: 100%;
}
.TextContainer:hover{
    box-shadow: 0px 0px 10px white; 
}
.TextContainer:hover h1{
    font-size: 30px;
    width: 90%;
}
.TextContainer:hover p{
    font-size: 20px;
    width: 93%;
}
.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:hover > .dropdown-content{
    display: inline-block;
    height: max-content;
    justify-content: center;
}
.dropdown:hover .dropdown-content-text{
    transition: all 0.5s;
    color: white;
    text-shadow: 0px 0px 5px black;
}
.dropdown:hover .dropdown-content-subtext{
    transition: all 0.5s;
    color: white;
    text-shadow: 0px 0px 5px black;
}
.dropdown:hover .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;
    display: block;
    text-decoration-line: none;
}
.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-subtext> .dropdown-content-sub{
    width: max-content;
    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;
}


.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;
}
.BaseImageContainer{
    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;
    gap: 10px;
}

.ImageContainer{
    display: flex;
    height: 100%;
    transition: all 0.5s;
    box-shadow: 0px 0px 10px black;
}
.ImageContainer > p{
    transition: all 0.5s;
    opacity: 0;
    position: absolute;
    margin: 5px;
    cursor: pointer;
    border: solid #4f1355 3px;
    background-color: #db72e2;
    padding: 2px;
    color: black;
}
.ImageContainer:hover > p{
    opacity: 1;
}
.ImageContainer > p:hover{
    color: white;
}
.ImageContainer > img{ /* image */
    width: 100%;
}

p > .yt,            h1 > .yt            { color: #ff3a3a; }
p > .itch,          h1 > .itch          { color: #ff8fa2; }
p > .terraria,      h1 > .terraria      { color: #7eff5e; }
p > .crawdad105,    h1 > .crawdad105    { color: #ffffff; text-shadow: 0px 0px 2px white; }
p > .cModLoader,    h1 > .cModLoader    { color: #716CCD; font-weight: bolder; text-shadow: 0px 0px 4px #000000, 0px 0px 1px white; }
p > .tModLoader,    h1 > .tModLoader    { color: #1d8503; }

.VertTextContGroup{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    width: 82%;
    margin: auto;
    padding: 10px;
}
.VertTextContGroup > .TextContainer{
    max-width: 50%;
    margin: 10px;
    margin-top: 0px;
}


.newItem{
    position: relative;
}
.newItem::before{
    content: "NEW";
    position: absolute;
    animation: spin 1s alternate infinite;
    font-size: 12px;
    color: yellow;
    pointer-events: none;
}
.wipItem{
    position: relative;
}
.wipItem::before{
    content: "WIP";
    position: absolute;
    animation: spin 1s alternate infinite;
    font-size: 12px;
    color: gray;
    pointer-events: none;
}
.errItem{
    position: relative;
}
.errItem::before{
    content: "Error";
    position: absolute;
    animation: spin 1s alternate infinite;
    font-size: 12px;
    color: red;
    pointer-events: none;
}
.naItem{
    position: relative;
}
.naItem::before{
    content: "N/A";
    position: absolute;
    animation: spin 1s alternate infinite;
    font-size: 12px;
    color: gray;
    pointer-events: none;
}
.updateItem{
    position: relative;
}
.updateItem::before{
    content: "Updated";
    position: absolute;
    animation: spin 1s alternate infinite;
    font-size: 12px;
    color: cyan;
    pointer-events: none;
}
.oldItem{
    position: relative;
}
.oldItem::before{
    content: "OLD";
    position: absolute;
    animation: spin 1s alternate infinite;
    font-size: 12px;
    color: green;
    pointer-events: none;
}
.depItem{
    position: relative;
}
.depItem::before{
    content: "Deprecated";
    position: absolute;
    animation: spin 1s alternate infinite;
    font-size: 12px;
    color: gray;
    pointer-events: none;
}

@keyframes spin {
  from {
    transform: translate(-16px, -10px) rotate(348deg) scale(1);
  }
  to {
    transform: translate(-16px, -10px) rotate(348deg) scale(1.5);
  }
}

.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;
    }
}
 
a {
    color: cyan;
}
.CrawdadNews a {
    color: blue;
}