* {
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(223, 216, 216);
    text-shadow: 0px 0px 15px rgb(62, 62, 62);
}

#bg {
    position: fixed;
    margin: -15px;
    filter: blur(4px);
}

.navbar {
    position: fixed !important;
    background-color: rgba(52, 49, 49, 0.25);
    width: 100%;
    z-index: 1;
}

.navbar #title {
    font-weight: 700;
    margin-left: 10px;

    cursor: pointer;
}

.navbar button {
    background-color: rgba(0, 0, 0, 0);
    padding: 5px;
    margin-right: 10px;
    width: 20vb;

    border-radius: 5px;
    border: none;

    transition: 250ms;
}
.navbar button:hover {
    background-color: rgba(52, 49, 49, 0.5);
}

.navbar #burgerMenu {
    margin-right: 10px;
    cursor: pointer;
}

#burgerMenuDropdown {
    position: fixed;
    background-color: rgba(52, 49, 49, 0.25);
    right: 0;
    top: 50px;

    display: none;
}

#burgerMenuDropdown button {
    background-color: rgba(0, 0, 0, 0);
    border: none;
    padding: 10px;
    width: 200px;

    transition: 250ms;
}
#burgerMenuDropdown button:hover {
    background-color: rgba(52, 49, 49, 0.5);
}

@media screen and (max-width: 870px) {
    .navbar button {
        display: none;
    }
}
@media screen and (min-width: 871px) {
    .navbar #burgerMenu {
        display: none;
    }
}

#centerItems {
    position: absolute;
    top: 30vh;
    width: 100%;
}

#centerBox {
    margin-left: 50%;
    transform: translate(-50%,0);
}

#centerText #title {
    font-weight: 700;
    font-size: 2vb;
    text-shadow: 0px 0px 15px rgb(62, 62, 62);
}

#centerText #centerBox {
    width: max-content;
}

#centerText #byTag {
    font-size: 1.8vb;
}

#buttons {
    margin-top: 15px;
    width: 100%;
}

#buttons button {
    background-color: rgba(52, 49, 49, 0.5);
    padding: 7.5px;
    min-width: 175px;

    border-radius: 5px;
    border: none;

    transition: 250ms;
}
#buttons button:hover {
    background-color: rgba(52, 49, 49, 0.75);
}

#aboutProjectPanel {
    position: absolute;
    width: 100%;
    height: 100%;
    margin-top: 100vh;

    background-color: rgba(52, 49, 49, 0.5);
}

#aboutTitle {
    margin-top: 60px;
    font-size: 2.5vb;
    font-weight: 700;
}

#overviewTitle, #baseGameTitle, #txAdminTitle {
    margin-left: 30px;
    font-size: 1.8vb;
    font-weight: 700;
}

#overviewTxt {
    margin-left: 25px;
    width: 45%;
}
#whatIsTitle {
    margin-top: 20px;
    margin-left: 30px;
    font-size: 1.8vb;
    font-weight: 700;
    width: 40%;
    margin-right: 10px;
}

#whatIs {
    right: 0px;
    position: absolute;
    width: 50%;
}

#whatIsTxt {
    margin-left: 25px;
}

@media screen and (min-width: 1000px) {
    #overviewTxt, #whatIsTxt {
        font-size: normal;
    }
}

@media screen and (max-width: 1000px) {
    #overviewTxt, #whatIsTxt {
        font-size: 1.5vb;
    }
}

#creditsPanel {
    position: absolute;
    width: 100%;
    height: 100%;
    margin-top: 200vh;

    background-color: rgba(52, 49, 49, 0);
}

#creditsPanel #creditTitle {
    margin-top: 60px;
    font-size: 2.5vb;
    font-weight: 700;
}

#creditTable {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 50px;        
}

#baseGameTxt, #txAdminTxt {
    margin-left: 25px;
    width: 95%;
}

@media screen and (max-width: 1000px) {
    #baseGameImg, #txAdminImg {
        margin-top: 20%;
    }
}