*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
html{
    overflow-y: scroll; /* to prevent offset due to scrollbar between pages! */
}

body{
    width: 80%;
    height: 100%;
    margin: auto;
    background-color: rgb(39, 40, 42);
}

/* #region Containers */

header{
    z-index: 1;
    box-shadow: 0 0 8px 0px rgba(0, 0, 0, 1);
    position: relative;
}

/* #region TabMenu */

#tabMenu{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-items: center;
    width: 100%;
    height: 100%;
}

.tab{
    background-color: grey;
    width: 50%;
    height: 100%;
    border-radius: 4px;
    transform: translateY(-25%);
    transition: transform 0.2s ease-out;
    text-align: center;
    padding: 8px;
    box-shadow: 0 0 8px 0px rgba(0, 0, 0, 1);
}

.tabText{
    font-weight: bolder;
    color: rgb(39, 40, 42);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.5vw;
}

.tab:hover{
    transform: translateY(0px);
}

/* #endregion TabMenu */

#intro{
    background-color: rgba(216,212,213,1);
    border-radius: 4px;
    padding-top: 2px;
    padding-bottom: 2px;
    margin-bottom: 20px;
    margin-top: 4px;
    padding-left: 4px;
    padding-right: 4px;
    box-shadow: 0 0 8px 0px rgba(0, 0, 0, 1);
}

.main{
    background-color: rgba(216,212,213,1);
    border-radius: 4px;
    padding-top: 0.5%;
    padding-bottom: 0.5%;
    margin-bottom: 20px;
    box-shadow: 0 0 8px 0px rgba(0, 0, 0, 1);
}

#footer{
    background-color: rgba(216,212,213,1);
    border-radius: 4px;
    padding-top: 2px;
    padding-bottom: 2px;
    margin-bottom: 20px;
    box-shadow: 0 0 8px 0px rgba(0, 0, 0, 1);
}

/* #region ContentCards */
.infoCard{
    padding: 12px;
}

.cardGridLeft{
    display: grid;
    grid-template-columns: 0.8fr 0.2fr 1fr;
    width: 99%;
    justify-items: center;
    margin: auto;
}
.cardGridRight{
    display: grid;
    grid-template-columns: 1fr 0.2fr 0.8fr;
    width: 99%;
    justify-items: center;
    margin: auto;
    
}
.cardSliderRight{
    background-color:  rgb(50, 50, 55);
    height: 90%;
    width:40px;
    margin: 4px;
    transform: translateX(31px);
    border-radius: 4px;
    justify-self: right;
    text-align: center;
    transition: transform 0.2s ease-out;
    box-shadow: 4px 6px 8px 0px rgba(0, 0, 0, 0.4);
}

.cardSliderRight:hover{
    width: 40px;
    transform: translateX(6px);
}
.contentCardRight{
    /* background-color:  rgba(133,152,157,1); */
    width: 100%;
    /* border-color: rgba(56,77,72,1); */
    border-radius: 4px;
    border-width: 2px;
    /* border-style: solid; */
    z-index: 1;
}    
.cardSliderLeft{
    background-color: rgb(50, 50, 55);
    height: 90%;
    width:40px;
    margin: 4px;
    transform: translateX(-31px);
    border-radius: 4px;
    justify-self: left;
    text-align: center;
    transition: transform 0.2s ease-out;
    box-shadow: -4px 6px 8px 0px  rgba(0, 0, 0, 0.4);
}
.cardSliderLeft:hover{
    width: 40px;
    transform: translateX(-6px);
}

.contentCardLeft{
    /* background-color:  rgba(133,152,157,1); */
    width: 100%;
    /* border-color: rgba(56,77,72,1); */
    border-radius: 4px;
    border-width: 2px;
    /* border-style: solid; */
    z-index: 1;
}

.sliderP{
display: grid;
align-content: center;
justify-content: center;
}

/* #endregion ContentCards */

/* #endregion Containers */

/*#region HeaderLogo*/
.logoBox{
    margin-top: 1%;  
    max-height: 200px;
    min-height: 30px;
    background-color:rgba(216,212,213,1);
    border-radius: 4px;
}

.headerLogo{
    max-height: 200px;
    max-width: 98%;
    min-width: 400px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
}

.headerLogo:hover{
    opacity: 0.8;
}

#aLogo{
    height: 100%;
    width: 100%;
}
/*#endregion HeaderLogo*/

/* #region ImgStyling */
#pongImg{
    width: 96%;
    max-height: 89%;
    margin-left: 2%;
    margin-right: 2%;
    margin-top: 3%;
}
/* #endregion ImgStyling */

/* #region defElementStyling */
p{
    font-family: 'Signika', sans-serif;
}
a{
    text-decoration: none;
}

hr{
    /* clear: both; */
    visibility: hidden; 
}

.noSelect{
    user-select: none;
    text-decoration: none;
}

/* #endregion defElementStyling */

/* #region MediaQuery */
@media screen and (max-width: 720px){
    .cardGridLeft{
        grid-template-columns: 1fr;
    }
    .cardGridRight{
        grid-template-columns: 1fr;
    }
}

/* #endregion MediaQuery */