@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Varela+Round&display=swap");

.master-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 100%;
}

html, body {
  overflow-x: hidden;
  margin: 0px;
    }
body {
    position: relative
}

.SubContainer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.life-bump {
    animation: bump ease 0.5s;
}

@keyframes bump {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(1.5);
    }
    60% {
        transform: scale(1)
    }
    100% {
        transform: scale(0)
    }
}

.AppContainer{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    font-size: calc(10px + 2vmin);
    font-family: sans-serif;
}

.header{
    display: flex;
    width: 100vw;
    flex-direction: row;
    justify-content: center;
    padding-top: 2vh;
    font-size: calc(10px + 2vmin);
    font-family: sans-serif;
}
.HeaderContainer{
    display: flex;
    width: 700px;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 2vh;
    font-size: calc(10px + 2vmin);
    font-family: sans-serif;

}

hr{
    width:700px;
}
.TitleContainer{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
}

#Title{
    font-family: 'Roboto Slab', sans-serif;
    font-size: 3vh;
    font-weight: 800;
    color:black;
}

.InfoContainer{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: end;
    flex-direction: column;
    margin-bottom: .1em;
}
.infoimg{
    width: 0.8em;
    object-fit: contain;
    padding-left: 0.2em;
    cursor: pointer;
}
.DateContainer{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: end;
    font-family:sans-serif ;


}
.FormatDate{
    color: grey;
    font-size: 1.8vh;
    font-weight: 700;
    margin: 0;
}

.ErrorContainer{
    height:5vh;
    width: 100vw; 
    color:white;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
}

.ErrorContainerContent{
    display:flex;
    flex-wrap:wrap;
    flex-direction:column;
    justify-content:center;
}
/*Buttons that appear in margin */
.SelectionError{
    margin-bottom: 1.5vh;
    background-color: #f54242;
    padding: 1vh;
    border-radius: 10px;
    display: none
}

.OneOff{
    margin-bottom: 1.5vh;
    background-color: #f54242;
    padding: 1vh;

    border-radius: 10px;
    display: none
}

.AlreadyGuessed{
    background-color: #f54242;
    padding: 1vh;
    margin-bottom:1.5vh;
    border-radius: 10px;
    display: none
}


.Answer1{
    display: none;
    margin-block: .5vh;
    width: 54vh;
    padding:.5em;
    background-color: #BFDEEE;
    font-family: sans-serif;
    text-align: center;
    border-radius: 10px; /*rounds the border*/
    margin-top: 1vh;
    overflow: hidden;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;


}


.CategoryName{
    font-size: 1.8vh;
    font-weight: 900;
    margin-block: 0;
    text-align: center;
    color: rgb(44, 44, 44);
}

.CategoryNames{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.8vh;
    font-weight: 900;
    margin-block: 0;
    text-align: center;
    color: rgb(44, 44, 44);
}
.PictureContainer{
    display: flex;
    flex-direction: row;
    height: 100%;
    justify-content: space-around;
    padding:0.5rem;
    
}

.img1{
    display: inline-block;
    height: 9.5vh;
    margin-top: .2em;
    border-radius: 10px;
    overflow: hidden;
    object-fit: contain;
}
.img2{
    display: inline-block;
    height: 9.5vh;
    margin-top: .2em;
    border-radius: 10px;
    overflow: hidden;
    object-fit: contain;
}
.img3{
    display: inline-block;
    height: 9.5vh;
    margin-top: .2em;
    object-fit: contain;
    border-radius: 10px;
    overflow: hidden;
}
.img4{
    display: inline-block;
    height: 9.5vh;
    margin-top: .2em;
    object-fit: contain;
    border-radius: 10px;
    overflow: hidden;
}

.Answer2{
    display: none;
    margin-block: .5vh;
    width: 54vh;
    padding:.5em;
    background-color: #AAC3FA;
    font-family: sans-serif;
    text-align: center;
    border-radius: 10px; 
    margin-top: 1vh;
    overflow: hidden;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
}

.Answer3{
    display: none;
    margin-block: .5vh;
    width: 54vh;
    padding:.5em;
    background-color: #7D8AF5;
    font-family: sans-serif;
    text-align: center;
    border-radius: 10px; 
    margin-top: 1vh;
    overflow: hidden;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
}
.Answer4{
    display: none;
    margin-block: .5vh;
    width: 54vh;
    padding:.5em;
    background-color: #865AF5;
    font-family: sans-serif;
    text-align: center;
    border-radius: 10px; 
    margin-top: 1vh;
    overflow: hidden;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
}

#MyImg{

    border-radius: 10px;
}

.Grid{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: white;   
    justify-content: space-between; 
}
.Tile{
    position:relative;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    vertical-align:center;
    user-select: none;
    background-color: rgb(221, 221, 219);
    padding: 0.5em;
    transform: translate(0px, 0px);
    border-radius: 10px;
    margin-inline: .25em;
    margin-block: .5em;

    /*for shadows*/
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    transition-property: box-shadow, transform ;
}

.Tile:hover , .Tile:focus, .Tile:active {
    box-shadow: 0 6px 8px  black;

} 

.img5{
    display: inline-block;
    width: 3.5em;
    height: 3.5em;
    margin-top: .5em;
    object-fit: contain;
    border-radius: 10px;
    overflow: hidden;
}

.str5{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size:12px;
    border-radius: 10px;
    overflow: visible;
    text-transform: capitalize;
    padding-bottom:none;
  word-wrap: break-word;
}

.mistakes{
    display:flex;
    flex-direction: row;
    align-items: center;

}

.LivesText{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: block;
    margin-block: 1em;
    margin-inline: 0px;
    font-size: 0.6em;
    margin-right: 0.2em;
    font-family: sans-serif;
    font-size: 2vh;
    font-weight: 600;
}

.HeartImage{
    width:0.8em;
    height:0.8em;
    margin-inline: .1em;
}

.FunctionButtons{
    color:black;
    display:flex;
    flex-direction: row;
    justify-content:center;
    margin-block: 1vh;
}

.Button{
    color:black;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
    background-color: white;
    padding-inline: 12px;
    padding-block: 4px;
    border-radius: 100px;
    border-color: black;
    border-width: 1.5px;
    margin-inline: 1em;
    cursor: pointer;
    overflow: hidden;
    outline: none;
    border-style: solid;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    transition-property: box-shadow, transform ;

    color:black;
}

.BackButton{
    color:black;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
    background-color: white;
    padding-inline: 12px;
    padding-block: 4px;
    border-radius: 100px;
    border-color: black;
    border-width: 1.5px;
    margin-inline: 1em;
    cursor: pointer;
    overflow: hidden;
    outline: none;
    border-style: solid;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    transition-property: box-shadow, transform ;
    margin:3px;
}

.BackButton:hover:enabled{
    color:black;
    box-shadow: 0 6px 8px  black;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
} 



.ButtonText{
    color:black;
    font-size: 1.2em;
    text-align: center;
    margin-block: 0.2em;
    font-weight: bold;
}

.Button:hover:enabled{
    color:black;
    box-shadow: 0 6px 8px  black;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
} 


.Button:disabled{
    color:black;
cursor:default;
color: rgba(173, 171, 171, 0.479);
}

body::-webkit-scrollbar{
    width: 0.51em;
    background-color: rgb(255, 0, 0,0.15);
}
body::-webkit-scrollbar-thumb {
    background-color: black;
    outline: 0.2px solid slategrey;
  }

.Submit{
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
    background-color: white;
    padding-inline: 12px;
    padding-block: 4px;
    border-radius: 100px;
    border-color: black;
    border-width: 1.5px;
    margin-inline: 1em;
    cursor: pointer;
    overflow: hidden;
    outline: none;
    border-style: solid;
}

.LoseScreen{
    /*display: flex; */
    position: fixed;
    width:100%;
    background-color: rgba(0, 0, 0, 0.7);
    flex-direction: column;
    align-items: center;
    /*height: unset;*/
    z-index: 8;
    justify-content: center;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 0;
    border: 0;
    display: none;
}
.LoseScreenContent{
    position: absolute;
    overflow-y: auto;
    justify-content: space-evenly;
    width: 45vh;
    border-radius: 20px;
    background-color: #ffe9c7;
    padding: 1.5em;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

#LoseScreenContent{
    width: 45vh;
}

.LoseScreenTitle{
    font-size: 2.5vh;
    margin-block: 0.2em;
    font-weight: 900;
    margin-top: 0;
    color: black;
    justify-content: center;
}
.LoseScreenText{
    margin-block: 0.5em;
    color: black;
    font-size: 1.5vh;
}



#LoseScreenContent{
    width:40vw;
}

#WinScreen{
    display:none;
}

.WinScreen{
    /*display: flex; */
    position: fixed;
    display:none;
    width:100%;
    background-color: rgba(0, 0, 0, 0.7);
    flex-direction: column;
    align-items: center;
    /*height: unset;*/
    z-index: 8;
    justify-content: center;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 0;
    border: 0;
}
.WinScreenContent{
    position: absolute;
    overflow-y: auto;
    justify-content: space-evenly;
    width: 35vh;
    border-radius: 20px;
    background-color: #ffe9c7;
    padding: 1.5em;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}
#WinContent{
    position: absolute;
    overflow-y: auto;
    justify-content: space-evenly;
    width:40vw;
    border-radius: 20px;
    background-color: #ffe9c7;
    padding: 1.5em;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.WinStatsText{
    font-size:30px;
    margin:.2vh;
    margin-bottom:.4vh;
}
.TimeTakenWin{
    font-size:20px;
    color:black;
}
.ButtonWin{
    color:black;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
    background-color: white;
    padding-inline: 12px;
    padding-block: 2px;
    border-radius: 100px;
    border-color: black;
    border-width: 1.5px;
    margin-inline: 8px;
    margin-bottom: 4px;
    margin-top: 4px;
    cursor: pointer;
    overflow: hidden;
    outline: none;
    border-style: solid;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    transition-property: box-shadow, transform ;

}

.ButtonWin:hover , .ButtonWin:focus, .ButtonWin:active {
    color:black;
    box-shadow: 0 6px 8px  black;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
} 
.WinStatsContainer{
    align-items: center;
    display:flex;
    flex-wrap:wrap;
    flex-direction:column;
    justify-content:space-around;
    border-radius:10px;
    padding:.5vh;
    margin:.3vh;
    margin-bottom:.6vh;
    width:100%;
    margin-top:0vh;
    align-items: center;
    justify-content: center;
    width:100%;
    text-align:center;
}
.WinStatsContent{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    height: 100%;
    background-color: #DAA88D;
    border-radius:20px;
    margin-bottom: 10px;
}
.ContainerOver{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
}
.CurrentStreak{
    display:flex;
    flex-wrap:wrap;
    flex-direction:column;
    justify-content:space-around;
    margin-block: .2vh;
    padding:.5em;  

    font-family: sans-serif;
    text-align: center;
    border-radius: 10px; /*rounds the border*/
    margin-top: .3vh;
    overflow: hidden;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    margin-inline:1vh;
}

.StatsText{
    font-size: 17px;
    margin:0px;
}

.StatsCurrent{
    font-size:35px;
    margin:0px;
}

.MaxStreak{
    display:flex;
    flex-wrap:wrap;
    flex-direction:column;
    justify-content:space-around;
    margin-block: .2vh;
    padding:.5em;  

    font-family: sans-serif;
    text-align: center;
    border-radius: 10px; /*rounds the border*/
    margin-top: .3vh;
    overflow: hidden;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
        margin-inline:1vh;
}
.FastestTime{
    display:flex;
    flex-wrap:wrap;
    flex-direction:column;
    justify-content:space-around;
    margin-block: .2vh;
    padding:.5em;  
    font-family: sans-serif;
    text-align: center;
    border-radius: 10px; /*rounds the border*/
    margin-top: .3vh;
    overflow: hidden;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
        margin-inline:1vh;
}
.OneShot{
    display:flex;
    flex-wrap:wrap;
    flex-direction:column;
    justify-content:space-around;
    margin-block: .2vh;
    padding:.5em;  
    font-family: sans-serif;
    text-align: center;
    border-radius: 10px; /*rounds the border*/
    margin-top: .3vh;
    overflow: hidden;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
        margin-inline:1vh;
}




.GamesPlugText{
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    font-size:20px;
    margin:0px;
    color:black;
    
}
.StatScreen{
    display: none;
    position: fixed;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    flex-direction: column;
    align-items: center;
    z-index: 8;
    justify-content: center;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 0;
    border: 0;
    overflow-x:hidden;
}
.StatScreenContent{
    position: absolute;
    overflow-y: auto;
    justify-content: space-evenly;
    width: 40vw;
    border-radius: 20px;
    background-color: #ffe9c7;
    padding: 1.5em;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x:hidden;

}

.WinStatsContent1{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    height: 100%;
    width: 35vw;
    background-color: #DAA88D;
    border-radius:20px;
}
.GameScreen{
    /*display: flex; */
    display: none;
    position: fixed;
    width: '100%';
    background-color: rgba(0, 0, 0, 0.7);
    flex-direction: column;
    align-items: center;
    z-index: 8;
    justify-content: center;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 0;
    border: 0;
    overflow-x: hidden;
    overflow-y: hidden;
    
}
.GameScreenContent{
    position: absolute;
    overflow-y: auto;
    justify-content: space-evenly;
    width: 35vh;
    border-radius: 20px;
    background-color: #ffe9c7;
    padding: 1.5em;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    overflow-y: hidden;
}

.GameScreenTitle{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2.5vh;
    margin-block: 0.2em;
    font-weight: 900;
    margin-top: 0;
    color: black;
    justify-content: center;
}
.InfoScreen{
    /*display: flex; */
    display: none;
    position: fixed;
    width: '100%';
    background-color: rgba(0, 0, 0, 0.7);
    flex-direction: column;
    align-items: center;
    z-index: 8;
    justify-content: center;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 0;
    border: 0;
    
}

.InfoScreenContent{
    position: absolute;
    overflow-y: auto;
    justify-content: space-evenly;
    width: 35vh;
    border-radius: 20px;
    background-color: #ffe9c7;
    padding: 1.5em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.InfoScreenTitle{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2.5vh;
    margin-block: 0.2em;
    font-weight: 900;
    margin-top: 0;
    color: black;
    justify-content: center;
}
.InfoScreenText{
    margin-block: 0.5em;
    color: black;
    font-size: 1.5vh;
}
.Example{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 5em;
    width: 100%;
    text-align: center;
}

.ExampleRow{ 
    display: 'flex';
    flex-direction: row;
    justify-content: space-around;
}

.ExampleChar{
    height:2.6em
}

.ExampleScreenText{
    margin-block: 0.5em;
    color: black;
    font-size: 1.5vh;
}


.HintScreen{
    display: none;
    position: fixed;
    width: '100%';
    background-color: rgba(0, 0, 0, 0.7);
    flex-direction: column;
    align-items: center;
    z-index: 8;
    justify-content: center;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 0;
    border: 0;
}

.HintContent{
    position: absolute;
    overflow-x: hidden;
    justify-content: space-evenly;
    width: 35vh;
    border-radius: 20px;
    background-color: #ffe9c7;
    padding: 1.5em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.HintScreenTitle{
    font-size: 2.5vh;
    margin-block: 0.2em;
    font-weight: 900;
    margin-top: 0;
    color: black;
    justify-content: center;
}

.Hint1{
    margin-block: .5vh;
    width: 10em;
    padding:.5em;
    background-color:  #BFDEEE;
    font-family: sans-serif;
    text-align: center;
    border-radius: 10px; 
    margin-top: 1vh;
    overflow: hidden;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    display: none
}


.Hint2{
    margin-block: .5vh;
    width: 10em;
    padding:.5em;
    
    background-color: #AAC3FA;
    font-family: sans-serif;
    text-align: center;
    border-radius: 10px; 
    margin-top: 1vh;
    overflow: hidden;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    display: none
}
.Hint3{
    margin-block: .5vh;
    width: 10em;
    padding:.5em;
    
    background-color: #7D8AF5;
    font-family: sans-serif;
    text-align: center;
    border-radius: 10px; 
    margin-top: 1vh;
    overflow: hidden;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    display: none
}
.Hint4{
    margin-block: .5vh;
    width: 10em;
    padding:.5em;
    
    background-color:  #865AF5;
    font-family: sans-serif;
    text-align: center;
    border-radius: 10px; 
    margin-top: 1vh;
    overflow: hidden;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    display: none
}

#HintButton1{
    margin-block: .5vh;
    width: 20em;
    padding:.5em;
    
    background-color: #BFDEEE;
    font-family: sans-serif;
    text-align: center;
    border-radius: 10px; 
    margin-top: 1vh;
    overflow: hidden;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
}
#HintButton2{
    margin-block: .5vh;
    width: 20em;
    padding:.5em;
    
    background-color: #AAC3FA;
    font-family: sans-serif;
    text-align: center;
    border-radius: 10px; 
    margin-top: 1vh;
    overflow: hidden;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
}
#HintButton3{
    margin-block: .5vh;
    width: 20em;
    padding:.5em;
    
    background-color: #7D8AF5;
    font-family: sans-serif;
    text-align: center;
    border-radius: 10px; 
    margin-top: 1vh;
    overflow: hidden;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
}
#HintButton4{
    margin-block: .5vh;
    width: 20em;
    padding:.5em;
    
    background-color: #865AF5;
    font-family: sans-serif;
    text-align: center;
    border-radius: 10px; 
    margin-top: 1vh;
    overflow: hidden;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
}


.Footer{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    width:100vw;
    background-color:#42414D;
    
}

.FooterContent{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-around;
}

.FooterGamesIcons{
    display: flex;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    align-items:center;

}

.ButtonFooter{
    color:black;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
    background-color: white;
    padding-inline: 12px;
    padding-block: 2px;
    border-radius: 100px;
    border-color: black;
    border-width: 1.5px;
    margin-inline: 8px;
    cursor: pointer;
    overflow: hidden;
    outline: none;
    border-style: solid;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    transition-property: box-shadow, transform ;

}

.ButtonFooter:hover , .ButtonFooter:focus, .ButtonFooter:active {
    color:black;
    box-shadow: 0 6px 8px  black;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
} 
.FooterTextContent{
    font-size:20px;
    color:white;
}

.FooterText{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    align-items:center;
    height: 60px;
}
.FooterSocialIcon{
    display: flex;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    align-items:center;
    height: 30px;
}

.FooterTextContent2{
    font-size:10px;
    color:white;
}
.FooterText2{
    display: flex;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items:center;
    margin:0px;
    padding:0px;
    height:40px;
}
.FooterTextContent3{
    font-size:10px;
    color:white;
    padding-inline:10px;
}
.FooterTextCentering{
    display:flex;
    flex-wrap:wrap;
    flex-direction:column;
    justify-content:flex-start;

}

.banner{
    width: 20vw;
    margin: 20px;
    overflow-x: hidden;
    overflow-y: hidden;
    border-radius: 15px;
    transition-duration: 0.2s;
}

.banner:hover , .banner:focus, .banner:active {
    box-shadow: 0 6px 8px  black;
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
    cursor: pointer;
} 

.infobanner{
    width: 15vw; 
    height: 9vh; 
    margin: 10px;
    overflow-x: hidden;
    overflow-y: hidden;
    border-radius: 15px;
    transition-duration: 0.2s;
}

.infobanner:hover , .infobanner:focus, .infobanner:active {
    box-shadow: 0 6px 8px  black;
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
    cursor: pointer;
} 
.WinBannerContent{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
}

#CalenderWin{
    background-color: #DAA88D;
}

#Wbtn{
    color:black;
    background-color: #DAA88D;  
}

#CalenderLose{
    background-color: #DAA88D;
}

#Lbtn{
    color:black;
    background-color: #DAA88D;  
}
@media only screen and (max-width: 600px) {

    .FooterTextContent{
    font-size:12px;
    color:white;
}

    .banner{
    width: 60vw;
    margin: 20px;
    overflow-x: hidden;
    overflow-y: hidden;
    border-radius: 15px;
    transition-duration: 0.2s;
}
    .infobanner{
        width: 10rem; 
        height: 3rem; 
        margin: 10px;
        overflow-x: hidden;
        overflow-y: hidden;
        border-radius: 15px;
        transition-duration: 0.2s;
    }

    hr{
        width: 400px;
    }

    .StatsText{
        font-size: 7px;
        margin:0px;
    }

    .StatsCurrent{
        font-size:15px;
        margin:0px;
    }
    .WinStatsText{
    font-size:13px;
    margin:.2vh;


    }
    .TimeTakenWin{
    font-size: 9px;
    color:black;
    }
    .GamesPlugText{
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    font-size:11px;
    margin:0px;
    color:black;

    
    }
    .Button{
    color:black;
    box-shadow: 0 1.5px 3px 0 rgba(0, 0, 0, 0.2);
    background-color: white;
    padding-inline: 12px;
    padding-block: 4px;
    border-radius: 100px;
    border-color: black;
    border-width: 1.5px;
    margin-inline: 1em;
    cursor: pointer;
    overflow: hidden;
    outline: none;
    border-style: solid;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    transition-property: box-shadow, transform ;
        height: fit-content;
        padding-inline: 10px;
        padding-block: 4px;
        border-width: 1px;
        border-radius: 4    0px;
        margin-inline: 0.7em;
    }

    


    .ButtonText{
    color:black;
        font-size: 0.7em;
        text-align: center;
        margin-block: 0.2em;
        font-weight: bold;
    }

    .Button:hover:enabled{
    color:black;
        box-shadow: 0 6px 8px  black;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    } 
    .FunctionButtons{
    color:black;
        display:flex;
        flex-direction: row;
        margin-block: 1vh;
        width:92%;
    }
    html, body {
    overflow-x: hidden;
    margin: 0px;
    }
    body {
    position: relative
    }
    .HeaderContainer{
        width:92%;

    }
    .Footer{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    width:100%;
    height:100%;
    background-color:#42414D;
    
    }
    .WinStatsContent1{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    height: 100%;
    width: 60vw;
    }

    .StatScreenContent {
        width:60vw;
    }

    .BoardScreenText{
    color: black;
    font-size: 1.5vh;
}
/*.tooltip {
    width: 100%;
    position: relative;
    display: inline-block;
}
    */
.gamesimg{
    padding:0px;
    align-items:center;
}

.Answer1{
    display: none;
    margin-block: .5vh;
    width: 45vh;
    padding:.5em;
    
    background-color: #BFDEEE;
    font-family: sans-serif;
    text-align: center;
    border-radius: 10px; /*rounds the border*/
    margin-top: 1vh;
    overflow: hidden;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;


}

.Answer2{
    display: none;
    margin-block: .5vh;
    width: 45vh;
    padding:.5em;
    
    background-color: #AAC3FA;
    font-family: sans-serif;
    text-align: center;
    border-radius: 10px; /*rounds the border*/
    margin-top: 1vh;
    overflow: hidden;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;


}
.Answer3{
    display: none;
    margin-block: .5vh;
    width: 45vh;
    padding:.5em;
    
    background-color: #7D8AF5;
    font-family: sans-serif;
    text-align: center;
    border-radius: 10px; /*rounds the border*/
    margin-top: 1vh;
    overflow: hidden;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;


}
.Answer4{
    display: none;
    margin-block: .5vh;
    width: 45vh;
    padding:.5em;
    
    background-color: #865AF5;
    font-family: sans-serif;
    text-align: center;
    border-radius: 10px; /*rounds the border*/
    margin-top: 1vh;
    overflow: hidden;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;


}
.PictureContainer{
    display: flex;
    flex-direction: row;
    height: 100%;
    justify-content: space-around;
    padding:0.5rem;
    
}

.img1{
    display: inline-block;
    height: 5.5 vh;
    margin-top: .2em;
    object-fit: contain;
    border-radius: 10px;
    overflow: hidden;
}
.img2{
    display: inline-block;
    height: 5.5 vh;
    margin-top: .2em;
    object-fit: contain;
    border-radius: 10px;
    overflow: hidden;
}
.img3{
    display: inline-block;
    height: 5.5 vh;
    margin-top: .2em;
    object-fit: contain;
    border-radius: 10px;
    overflow: hidden;
}
.img4{
    display: inline-block;
    height: 5.5 vh;
    margin-top: .2em;
    object-fit: contain;
    border-radius: 10px;
    overflow: hidden;
}
.ExampleChar{
    height: 7.5vh;
}
.InfoScreenContent{
    position: absolute;
    overflow-y: auto;
    justify-content: space-evenly;
    width: 35vh;
    border-radius: 20px;
    background-color: #ffe9c7;
    padding:2.4vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.str5{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size:8px;
    border-radius: 10px;
    overflow: visible;
    text-transform: capitalize;
    padding-bottom:none;
  word-wrap: break-word;
}
} 
@media only screen and  (min-width: 600px) and (max-width: 1800px) {
    .ExampleChar{
        height: 7.5vh;
    }

    .InfoScreenContent{
        position: absolute;
        overflow-y: auto;
        justify-content: space-evenly;
        width: 35vh;
        border-radius: 20px;
        background-color: #ffe9c7;
        padding: 2.4vh;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .banner{
    width: 19rem;
    margin: 1.3rem;
    overflow-x: hidden;
    overflow-y: hidden;
    border-radius: 15px;
    transition-duration: 0.2s;
}
    .infobanner{
        width: 13rem; 
        height: 4rem; 
        margin: 10px;
        overflow-x: hidden;
        overflow-y: hidden;
        border-radius: 15px;
        transition-duration: 0.2s;
    }

    .FooterTextContent{
    font-size:15px;
    color:white;
}

.str5{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size:10px;
    border-radius: 10px;
    overflow: visible;
    text-transform: capitalize;
    padding-bottom:none;
  word-wrap: break-word;
}

}
