:root {
    --fs-NavBar: 30px;
    /*font-size*/
}

body {
    margin-top: 50px;
}

p {
    font-size: 23px;
    margin: 0px;
    color: black;
}

.boldTxt {
    font-weight: bold;
}

a {
    text-decoration: none;
}

a:link {
    color: black;
}

a:visited {
    color: black;
}

a:hover {
    color: black;
}

#iframe:hover{ /*without this hover effect, clickable content within the iframe is blocked by other content within the body.*/
    z-index: 1;
}

#navBar {
    display: flex;
    position: fixed;
    top: 0px;
    width: 100%;
    align-items: center;
    justify-content: space-around;
    background-color: rgb(209, 202, 211);
    outline: 0px solid black;
}


/* Navigation buttons, eventually to become drop-down menus*/
#shipTypes:hover{
    cursor: pointer;
}
#shipTypes:hover .shipBtnContainer {
    display: block;
    cursor: pointer;
}
#classes:hover{
    cursor: pointer;
}
#classes:hover .classesBtnContainer {
    display: block;
}
/* need to  */
#gameRules {
    display: flex;
    font-size: var(--fs-NavBar);
    border-bottom: 4px solid #4285f4;
}

#races {
    display: flex;
    border-bottom: 4px solid #F6B26B;
    font-size: var(--fs-NavBar);
}

#feats {
    border-bottom: 4px solid #980000;
    font-size: var(--fs-NavBar);
}

#classes {
    border-bottom: 4px solid #6AA84F;
    font-size: var(--fs-NavBar);
}

#classSpecificTables {
    border-bottom: 4px solid #6AA84F;
    font-size: var(--fs-NavBar);
}

#cyberneticEnhancements {
    border-bottom: 4px solid #F6B26B;
    font-size: var(--fs-NavBar);
}

#weapons {
    border-bottom: 4px solid #DD7E6B;
    font-size: var(--fs-NavBar);
}

#shipCombatRules {
    border-bottom: 4px solid #3D85C6;
    font-size: var(--fs-NavBar);
}

#shipModules {
    border-bottom: 4px solid #3D85C6;
    font-size: var(--fs-NavBar);
}

#shipTypes {
    border-bottom: 4px solid #3D85C6;
    font-size: var(--fs-NavBar);
}

.shipBtnContainer {
    display: none;
    position: absolute;
    background-color: rgba(184, 184, 184, 0.932);
    border-bottom: 2px solid #3D85C6;
    font-size: var(--fs-NavBar);
    width: 135px;
    text-align: center;
    cursor: pointer;
    outline: 0px solid red;
}

#shipTankerBtn {
    display: block;
    border-bottom: 4px solid #3D85C6;
    font-size: var(--fs-NavBar);
    outline: 0px solid blue;
}

.tankerImg {
    display: flex;
    justify-content: center;
    outline: 0px solid blue;
}

#shipAssaultBtn {
    display: block;
    border-bottom: 4px solid #3D85C6;
    font-size: var(--fs-NavBar);
}

.assaultImg {
    display: flex;
    justify-content: center;
    outline: 0px solid blue;
}

#shipStealthBtn {
    display: block;
    border-bottom: 2px solid #3D85C6;
    font-size: var(--fs-NavBar);
}

.stealthImg {
    display: flex;
    justify-content: center;
    outline: 0px solid blue;
}

#racesImg {
    display: flex;
    justify-content: center;
    outline: 0px solid blue;
}

.featsImg {
    display: flex;
    justify-content: center;
    zoom: 150%;
    outline: 0px solid blue;
}

.classesBtnContainer {
    display: none;
    position: absolute;
    transform: translate(-15px);
    background-color: rgba(184, 184, 184, 0.932);
    border-bottom: 2px solid #6AA84F;
    font-size: var(--fs-NavBar);
    width: 120px;
    text-align: center;
    cursor: pointer;
    outline: 0px solid red;
}

.classTitle{
    display: flex;
    justify-content: center;
    font-size: 30px;
    background-color: #6AA84F;
}







.classContainer{
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 20px;
    font-size: 25px;
    font-weight: bold;
    outline: 0px solid black;
}
.classContainerGrid{
    display: grid;
    background-color: #6AA84F;
    width: 70%;
    grid-template-columns: auto;
    outline: 0px solid blue;
}
.classContainerGrid p{
    outline: 0px solid red;
    margin: 0px;
    justify-content: center;
}
.classContainerGrid div{
    border: 1px solid black;
    padding: 10px;
    text-align: center;
}






.abilitiesHeader{
    display: flex;
    font-size: 25px;
    line-height: 50px;
    background-color: #6AA84F;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    margin-bottom: 0px;
}
.abilities{
    display: flex;
    width: 70%;
    margin: auto;
    background-color: #B6D7A8;
    outline: 0px solid red;
}
.abilitiesTitles{
    width: 100%;
    padding-left: 5px;
    padding-bottom: 0px;
    outline: 0px solid red;
}
.abilitiesText{
    padding-bottom: 20px;
}
.classInfo2{
    font-size: 25px;
    font-weight: bold;
}
.classWeapon{
    display: flex;
    justify-content: space-around;
    padding-top: 0px;
    background-color: #B6D7A8;
    outline: 0px solid red;
}
.classWeapon a{
    display: flex;
    outline: 2px solid red;
}
/* trying to make sure that class buttons aren't covered by iframe after scrolling 6/29/26 */
.classSpacer{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    outline: 0px solid red;
}
.classInfo1{
    background-color: #B6D7A8;
    font-size: 25px;
}
#heavyArtilleryBtn {
    display: block;
    border-bottom: 4px solid #6AA84F;
    font-size: var(--fs-NavBar);
}
.statsContainer {
    display: flex;
    width: 100%;
    justify-content: center;
    font-weight: bold;
    outline: 0px solid black;
}
.statsContainerGrid {
    display: grid;
    background-color: #6AA84F;
    width: 70%;
    grid-template-columns: auto auto auto auto;
    outline: 0px solid blue;
}
.statsContainerGrid div{
    font-size: 25px;
    border: 1px solid black;
    padding: 10px;
    text-align: center;
}
.minimumStatReq{
    display: flex;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
    justify-content: center;
    margin-top: 40px;
    background-color: #6AA84F;
    font-weight: bold;
    line-height: 50px;
}
#engineerBtn {
    display: block;
    border-bottom: 4px solid #6AA84F;
    font-size: var(--fs-NavBar);
}

.engineerImg {
    display: flex;
    justify-content: center;
}

#doctorBtn {
    display: block;
    border-bottom: 4px solid #6AA84F;
    font-size: var(--fs-NavBar);
}

.doctorImg {
    display: flex;
    justify-content: center;
}

#reconOfficerBtn {
    display: block;
    border-bottom: 4px solid #6AA84F;
    font-size: var(--fs-NavBar);
}

.reconOfficerImg {
    display: flex;
    justify-content: center;
}

#assaultSpecialistBtn {
    display: block;
    border-bottom: 4px solid #6AA84F;
    font-size: var(--fs-NavBar);
}

.assaultSpecialistImg {
    display: flex;
    justify-content: center;
}

#gunnerBtn {
    display: block;
    border-bottom: 4px solid #6AA84F;
    font-size: var(--fs-NavBar);
}

.gunnerImg {
    display: flex;
    justify-content: center;
}

#maverickBtn {
    display: block;
    border-bottom: 4px solid #6AA84F;
    font-size: var(--fs-NavBar);
}

.maverickImg {
    display: flex;
    justify-content: center;
}

#strategistBtn {
    display: block;
    border-bottom: 2px solid #6AA84F;
    font-size: var(--fs-NavBar);
}

.strategistImg {
    display: flex;
    justify-content: center;
}

#cyberEnhancementsImg {
    display: flex;
    zoom: 150%;
    justify-content: center;
    outline: 0px solid blue;
}

.weaponsImg {
    display: flex;
    justify-content: center;
}

.weaponsImg1 {
    display: flex;
    zoom: 100%;
}


/* .weaponsImg2{
    display: flex;
    width: 500px;
    overflow-x: auto;
}
.scrolImg2{
    display: flex;
} */


/*Columns*/

#cols {
    display: flex;
    justify-content: center;
    width: 100%;
    outline: 0px solid red;
    height: 100%;
}

#col1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 60%;
    outline: 0px solid purple;
}

#col2 {
    display: flex;
    justify-content: start;
    flex-direction: column;
    width: 40%;
    outline: 0px solid blue;
}

#col2Img {
    background-color: white;
    margin-right: 0px;
    padding-left: 0px;
    width: 100%;
    outline: 2px solid black;
}

.rulesPage {
    margin-right: 2px;
    padding-left: 4px;
    outline: 2px solid black;
}
.createCharacter{
    display: flex;
    justify-content: center;
    outline: 0px solid red;
}

#tankerPage {
    position: absolute;
}

#assaultPage {
    position: absolute;
}

#stealthPage {
    position: absolute;
}

#iframe {
    transform: translate(-12px, -50px);
    width: 100%;
    position: fixed;
    height: 100%;
    transition: .3s;
    z-index: -1;/*This makes sure the iframe normally doesn't cover content within the body */ 
}

.stretchedLink{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.ClicktoEdit{
    display: flex;
    justify-content: center;
    align-items: end;
    font-family:Arial, Helvetica, sans-serif;
    font-size: 30px;
    color: #4285f4;
    width: 100%;
    height: 100%;
    padding-top: 4px;
}
.s5{
    position: relative;
    outline: 0px solid blue;
}
.homeImage img{
    transform: translate(-8px);
    position: absolute;
    outline: 0px solid red;
    width: 100%;
    height: 100%;
    margin-top: -11px;
}
/* #navBar {
    pointer-events: all;
} */