@font-face {
    font-family: 'CrimsonText';
    src: url('fonts/CrimsonText-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


.contactLink {
    text-indent: 1vw;
}
.body {
    margin: 0;
    padding: 0;
}
.bodyInMainMenu {
    margin: 0;
    padding: 0;
    background-color: #232323;
}
#bgCanvas {
    display: block;
    position: absolute;
    z-index: -1;
}

.topBar {
    display: flex;
    width: 100%;
    height: 3vw;
    background-color: #232323; 
}
@media (max-width: 768px) {
    .topBar {
        height: 10vw;
    }
}

.gameImg {
    width: 20vw;
    height: 12vw;
}
.generalPageTitleParent {
    display:flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 12vw;
}
.genPara {
    text-indent: 1vw;
}

.genImg {
    width: 100%;

}
@media (max-width:768px) {
    .generalPageTitleParent {
        height:20vw;
    }
}
.generalPageTitleButton {
    background:none;
    border:none;
    user-select:none;
    transition: width 1.5s ease;
    height: auto;

}
@media (hover: none) {
    .generalPageTitleButton {
        transition: none;
    }
}
@media (min-width:768px) {
    .generalPageTitleButton {
       width: 40%; 
    }
    @media (hover: hover) {
        .generalPageTitleButton:hover {
            width: 50%;
        }
    }
}
@media (max-width:768px) {
    .generalPageTitleButton {
        width:80%;
    }
    @media (hover: hover) {
        .generalPageTitleButton:hover {
            width: 90%;
        }
    }
}
.generalPageTitleIcon {
    margin-top: 2vw;
    width: 100%;
}

.blueLink {
    color: #1B8AC1
}
.barButton {
    height: 100%; 
    font-family: "CrimsonText";
    font-weight: normal;
    background:none;
    border:none;
    user-select:none;
    color: #FFFFFF;
    transition: font-size 0.2s ease;
}

@media (min-width: 768px) {
    .barButton {
        font-size: 2vw;
        margin-left: 1.5vw;
    }
}
@media (max-width: 768px) {
    .barButton {
        font-size: 4vw;
        margin-left: 0vw;
    }

}

@media (hover: hover) {
    .barButton:hover {
        font-family: "Arial";
        font-weight: bold;
    }
    @media (min-width:768px) {
        .barButton:hover {
            font-size: 2.2vw;
        }
    } 
    @media (max-width:768px) {
        .barButton:hover {
            font-size: 4.2vw;
        }
    }
}
.descParent {
    display:flex;
    width: 100%;
    
}
.descSide {
    width: 27.5%;
    height: 100%;
}
@media (max-width: 768px) {
    .descSide{
        width: 10%;
    }
}
.descMain {
    width: 55%;
    height: 100%; 
    color: #DDDDDD;
    font-family: "CrimsonText";
    text-align: left;
    font-size: 1.3vw;
    
    /* border-style:dotted; */
    /* border-radius: 20px; */
    outline: 3px ridge #DDDDDD;
    outline-offset: -10px;

    margin-top: 0;
    padding: 2vw;
    padding-top: 0;
}

@media (max-width: 768px) {
    .descMain{
        outline: 1px ridge #DDDDDD;
        outline-offset: 3px;
        font-size: 4vw;
        width: 80%;
    }
}

.descUnderParent {
    display: flex;
    margin: 0;
    flex-direction:column;
}
.descUnder {
    flex-grow: 1;
    height: 2vw;

}

.gamesBarButton:hover {
    color: #1B8AC1;
}
.mediaBarButton:hover {
    color: #AF7CA6;
}
.reviewsBarButton:hover {
    color: #A69265;
}
.blogBarButton:hover {
    color: #B75252;
}
.aboutBarButton:hover {
    color: #699C64;
}
.contactBarButton:hover {
    color: #888888;
}

.barButtonImg {
    width: 100%;
    height: 100%;
}

.socialMediaDivParent {
    display:flex;
    justify-content: flex-end;
    width: 100%;
}
.socialMediaDiv {
    display: flex;
    gap: 2vw;
    margin-right: 2vw;
    /* margin-left: auto;
    margin-right: 0; */
    /* display:flex; */
    /* width: 100%; */
}
.socialMediaAnchor {
    width: 100%;
    height: 100%;
    display: flex;
    align-items:center;
    /* height: auto; */
    /* max-width: 50%; */
    /* width: 10%; */
    /* height: 100%; */
    /* background-color: transparent; */
    transition: width 0.05s ease;
    transition: height 0.05s ease;
}
.socialMediaAnchor:hover {
    width: 107%;
    height: 107%;
}

.socialMediaImg {
    height: 100%;
    width:3vw;
}
@media (max-width: 768px) {
    .socialMediaImg{
        width:8vw;
    }
}



/*  
    Title Button on landing page. Hover size changes based on display size. 
    Disable hover effect on mobile
*/
.titleParent {
    display: flex;
    justify-content: center;
    
}
.titleButton {
    background: none;
    border: none;
    user-select: none;

}
@media (min-width: 768px) {
    .titleButton {
        width: 50%;
        margin-bottom: -4vh;
        transition: width 1.5s ease;
    }
    @media (hover: hover) {
        .titleButton:hover {
            width:70%;
            cursor: pointer;
        }
    }
}
@media (max-width: 768px) {
    .titleButton {
        width: 90%;
        margin: auto;    
        margin-bottom: 2vh;
        transition: width 1.5s ease;
    }
    @media (hover: hover) {
        .titleButton:hover {
            width:100%;
        }
    }
}
/* 
    Main menu buttons on landing page. Hover size changes based on display size.
*/

.optionParent {
    display: flex;
    flex-direction: column;
    justify-content:center;
}

.optionShared {
    background: none;
    border: none;
    user-select: none;
    position: relative;
    z-index: 0;
    margin: auto;    
}

@media (min-width: 768px) {
    .optionShared {
        width: 25%;
        transition: background-color 0.2s ease;
        transition: width 0.025s ease;
    }
}

@media (max-width: 768px) {
    .optionShared {
        width: 60%;
    }
}
@media (min-width: 768px) {
    .optionShared:hover {
        width: 30%;
    }
} 
@media (max-width:768px) {
    .optionShared:hover {
        width: 70%;
    }
}

.titleIcon {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.optionIconShared {
    width: 28%;
}
.optionTextShared {
    width: 52%;
}
.gamesOption:hover {
    background-color: #1B8AC1;
}
.mediaOption:hover {
    background-color: #AF7CA6;
}
.reviewsOption:hover {
    background-color: #A69265;
}
.blogOption:hover {
    background-color: #B75252;
}
.aboutOption:hover {
    background-color: #699C64;
}
.contactOption:hover {
    background-color: #888888;
}


