:root {
    --mint: #77FFcc;
    background-color: #1b1b1b;
    overscroll-behavior: none;
    overflow-x: hidden;
    position:relative;
}

body {
    margin:0;
    padding: 0;
}
h1 {
    color:#fff;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
    margin-bottom: 0px;
}

h2 {
    color:var(--mint);
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: normal;
    margin-top:0.5rem;

}

i {
    color:#fff;
    font-family: Arial, Helvetica, sans-serif;
}

b {
    color: var(--mint);
}

.game {
    font-weight:bold;
    color:#fff;
    background-color: transparent;
    width: 400px;
    height: 250px;
    border-radius: 5px;
    border: 3px solid #fff;

    transition: all 0.3s ease;

    display:flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;

    margin-left: 0.5rem;
    margin-right: 0.5rem;
    
}

.game:hover {
    border: 10px solid;
    font-size: large;
    background-color: #444;
    text-shadow: #fff 0px 0px 1rem;
}

.projectbuttons {
    display: flex;

    margin-left:5%;
    margin-right:5%;
}

.rat {
    background-image: url("Assets/Projects/Rat\ Lord.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(52, 52, 52, 0.5);
    background-blend-mode: multiply;
}

.terra {
    background-image: url("Assets/Projects/Terraforma.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(52, 52, 52, 0.5);
    background-blend-mode: multiply;
}

.hell {
    background-image: url("Assets/Projects/HellsArenaTitle.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(52, 52, 52, 0.5);
    background-blend-mode: multiply;
}

.other {
    background-image: url("Assets/Projects/OtherProjects.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(52, 52, 52, 0.5);
    background-blend-mode: multiply;
}

.rat:hover {
    border-color: rgb(247, 255, 101);
    color: rgb(247, 255, 101);
}

.hell:hover {
    border-color: #f88;
    color: #f88;
}

.terra:hover {
    border-color: #afa;
    color: #afa;
}

.other:hover {
    border-color: #8ff;
    color: #8ff;
}

.landingtext {
    margin-bottom: 3rem;
    margin-top: 2rem;
    border-radius: 5px;
    border: 3px solid var(--mint);
    padding: 1rem;

    display: flex;
    flex-direction: column;
    justify-content: center;

    align-items: center;

    color:white;
    font-family: Arial, Helvetica, sans-serif; 
}

.aboutme {
    border-radius: 5px;
    border: 3px solid var(--mint);
    padding: 1rem;
}

.landing {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    margin: 5%;
}



.otherproject {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    border-radius: 5px;
    border: 3px solid var(--mint);
    padding: 1rem;
    margin: 5%;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.head {
    background-color: #397;
    display: flex;
    justify-content: space-between;
    color:white;
    font-family: Arial, Helvetica, sans-serif;
    font-size:x-large;
    box-sizing: border-box;
    width: 100%;
    position:sticky;

    left:0;
    right:0;
    top:0;
    margin:0;
    padding: 10px 20px;
}

.foot {
    background-color: #397;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.foot a {
    color:#aff;
    font-weight: bold;
}

.foot hr {
    margin-top: 0;
    margin-bottom: 2rem;
    background-color:white;
    width: 50%;
    height: 3px;
    border: none;
    box-shadow: #aaa 0px 2px 0px;
}

.foot p {
    color:#fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: medium;
    margin-bottom: 1rem;
    margin-top: 0;
    text-align: center;
}

.footdiv {
    display: flex;

    margin: 0.25rem;

    justify-content: center;

}

.footdiv img {
    height:100px;
    transition: all 0.3s ease;
    margin: 25px;
    transform-origin: center;
}

.footdiv img:hover {
    transform:scale(120%)
}

.headopt {
    color: #fff;
    font-size:smaller;
    text-decoration: none;
    margin: 0.5rem;
}

.headopt:hover {
    color:#8ff;
    text-decoration: dotted;
}

.bubble {
    color:#afa;

    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;

    font-family: Arial, Helvetica, sans-serif;

    min-height: 2rem;
    border-color: currentColor;
    background-color: color-mix(in srgb, currentColor, black 60%);
    border-radius: 8px;
    border-width: 2px;

    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-bottom: 0.25rem;
    
    transform: all 0.3s ease;
    transform-origin: center;
}

.bubble:hover {
    transform: scale(110%);
}

.bubblediv {
    flex-wrap: wrap; display: flex; justify-content: center; gap: 0.5rem;
}

.bub-art {
    color:#fb9;
}

.bub-eng {
    color:#faf
}

.bub-lan {
    color:#f99;
}

.bub-pro {
    color:#ff9;
}

.bub-tool {
    color:#aef;
}

.borderbright {
    margin:5%;
    margin-bottom: 3rem;
    margin-top: 2rem;
    border-radius: 5px;
    border: 3px solid var(--mint);
    padding: 1rem;

    display: flex;
    flex-direction: column;
    justify-content: center;

    align-items: center;
}

p {
    color:white;
    font-family: Arial, Helvetica, sans-serif; 
}

li {
    color:white;
    font-family: Arial, Helvetica, sans-serif; 
}

.homepage {
    background-image:
        linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)),
        url(/Assets/HomePageBG.jpg);
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
}

.aboutpage {
    background-image:
        linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)),
        url(/Assets/AboutPageBG.jpg);
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
}

.otherpage {
    background-image:
        linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)),
        url(/Assets/OtherBG.jpg);
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ratlordpage {
    background-image:
        linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)),
        url(/Assets/Rat\ Lord\ Poster.png);
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hellsarenapage {
    background-image:
        linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.5)),
        url(/Assets/Projects/HellsArenaBG.png);
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
}

.terraformapage {
    background-image:
        linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)),
        url(/Assets/Projects/TerraformaBG.png);
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
}

.projecth2 {
    margin-bottom:0rem;
}

.projectp {
    margin-top:0.25rem;
}

td {
    padding: 0.25rem;
    border-style: solid;
    border-width: 2px;
    border-color: white;
}

.thead {
    padding: 0.5rem;
    border-style: solid;
    border-width: 2px;
    border-color: white;
}

.dlnbtn {
    padding: 1rem; 
    border-style: dotted; 
    border-width: 2px; 
    border-radius : 5px; 
    border-color: currentColor; 
    text-align: center; 
    color: #aff; 
    font-weight: bold; 
    font-size: x-large; 
    text-decoration: none;
    transition: all 0.3s ease-in-out
}

.dlnbtn:hover {
    color: rgb(245, 255, 255); 
    font-weight: bolder;
}

.centerimg {
    display: block;
    margin:0px auto;
    max-width:90%;
    height: auto;
    justify-content: center;
    text-align: center;
}

.icon {
    width:75px;
    height:auto;
    border-radius: 5px;
}

.bigicon {
    width:115px;
    height:auto;
    border-radius: 5px;
}

.biggericon {
    width: 300px;
    height:auto;
    border-radius: 5px;
}

.tdc {
    justify-content: center;
    text-align: center;
}

.tdp {
    margin-top: 0px;
    margin-bottom: 0px;
}

.otherproj {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.otherprojectdiv {
    display:flex; 
    justify-content: center; 
    flex:1; 
    flex-direction: column; 
    align-items: center; 
    text-align: center;
}

video {
    max-width: 400px;
    width:100%; 
    height: auto;
    border-radius: 5px;
}

.scout {
    width: 100px;
}

img {
    max-width: 100%;
}

* {
    box-sizing: border-box;
}

.content {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem;
    overflow-wrap: break-word;
}

.tablewrap {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

@media (max-width: 768px) {
    .landing {
        flex-direction: column;
        text-align: center;
    }

    .otherproject {
        flex-direction: column;
    }
}

.navlink {
    justify-content: right;
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
}