
*{
    box-sizing: border-box;
}

html {
}

body {
    font-family: 'Mooli', sans-serif;
    background-color: #d9ffff;
    margin: 0;
    position: relative;
    min-height: 1075px;
}

@media screen and (max-width: 606px) {
    body {
        min-height: 1075px;
    }
}

.youwin {
    position: absolute;
    top: 25%;
    width: 100%;
    transform: translate(-50%, -50%);
    z-index: 2;
    animation-timing-function: ease;
    animation-name: youwin;
    animation-duration: 1s;
    animation-iteration-count: 5;
}

@keyframes youwin {
    0% {width: 100%; left: 0%}

    50% {width: 50%; left: 25%}

    100% {width: 100%; left: 0%}
}

.waitloader {
    border: 12px solid rgba(211, 211, 211, 1);
    border-top: 12px solid mediumblue;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100px;
    height: 100px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
}

hr {
    margin-right: 5px;
    height:1px;
    border-width:0;
    color:gray;
    background-color:#48b5e0;
}

footer {
    margin-top: auto;
    width: 100%;
    height: 30px;
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    background-color: paleturquoise;
    justify-content: space-evenly;
    z-index: 2;
}

footer a{
    color: brown;
    margin-top: 7px;
    font-size: 12px;
    text-decoration: none;
}

footer p {
    color: brown;
    margin-top: 7px;
    font-size: 12px;
}

.headerdiv {
    background-image: linear-gradient(90deg, #87cfeb, #def6ff);
    border-top: medium solid #48b5e0;
}

.headerdiv h2{
    font-family: 'Mooli', san-serif;
    text-align: center;
    color: #3636b7;

    margin: 0px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.container {
    display: none;
    width: 90%;
    height: auto;
    top: -7%;
    position: fixed;
    transform: translate(5%, 100%);
    border: 1px solid black;
    cursor: pointer;
    z-index: 3;
}

@media screen and (min-width: 900px){
    .container{
        width: 50%;
        top: 0;
        transform: translate(50%, 50%);
    }
}

@media screen and (min-width: 1750px){
    .container{
        width: 50%;
        top: -10%;
        transform: translate(50%, 50%);
    }
}

.container img {
    width: 100%;
    height: auto;
}

.container .centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-weight: 800;
    margin-top: 38%;
    cursor: pointer;
    line-height: .5;
    text-align: center;
    background-color: white;
    border: 2px solid green;
    border-radius: 12px;
}

.container .centered p {
    padding-left: 10px;
    padding-right: 10px;
}

.container .centered:hover {
    color: white;
    background-color: green;
}

.loginbar{
    font-family: Sans-Serif;
    height: 30px;
    width:100%;
    display:flex;
    background-color:paleturquoise;
    justify-content: space-between;
    line-height:3px;
}

.loginbar p, .loginbar a{
    font-size: 14px;
    color: darkblue;
}

.rightdesktop{
    height:73px;
    width:auto;
    float:right;
    margin-top:9px;
    margin-right:10px;
}

.leftdesktop{
    height:43px;
    width:auto;
    float:left;
    margin-top:2px;
    margin-left:5px;
    cursor: pointer;
    z-index: 3;
}

/* Page Content*/

.content {
    width: 76%;
    line-height: 160%;
    position: absolute;
    left: 12%;
    z-index: 1;
}


@media screen and (min-width: 133px) {
    .content {
        width: 96%;
        position: absolute;
        left: 2%;
    }
}

@media screen and (min-width: 900px){
    .content{
        width: 70%;
        position: absolute;
        left: 15%;
    }
}

@media screen and (min-width: 1000px){
    .content{
        width: 66%;
        position: absolute;
        left: 17%;
    }
}

@media screen and (min-width: 1375px){
    .content {
        width: 76%;
        position: absolute;
        left: 12%;
    }
}

.content p {
    position: relative;
    font-family: "Mooli", sans-serif;
    line-height: 160%;
    color: black;
    font-size: 16px;
    margin-left: 10px;
    margin-right: 10px;
    z-index: 1;
}

@media screen and (min-width: 1000px){
    .content p {
        font-size: 18px;
    }
}

@media screen and (min-width: 1375px){
    .content p {
        font-size: 20px;
    }
}

/* programing_dropdown Menu */

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    text-align: center;
    left: -50px;
    top: 30px;
    background-color: #b8e9fc;
    border-radius: 22px;
    min-width: 125px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown-content a {
    color: darkblue;
    margin: 10px;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {color: white; background-color: #46b7e3; border-radius: 22px;}

.dropdown:hover .dropdown-content {display: block;}

/* programing_sidebar Div */

.programing_side {
    color: darkblue;
    height: auto;
    width: 10%;
    padding-left: 3px;
    display: block;
    background-image: linear-gradient(0deg, #def6ff, #87cfeb);
    border-top-right-radius: 90px;
    border-bottom-right-radius: 90px;
    float: left;
    margin-bottom: 45px;
    margin-top: 5px;
    margin-right: 15px;
    position: absolute;
    z-index: 2;
}

@media screen and (min-width: 125px){
    .programing_side{
        width: 40%;
    }
}


@media screen and (min-width: 475px){
    .programing_side{
        width: 30%;
    }
}


@media screen and (min-width: 733px){
    .programing_side{
        width: 20%;
    }
}

@media screen and (min-width: 1000px){
    .programing_side{
        width: 15%;
    }
}

@media only screen and (min-width: 1375px){
    .programing_side {
        width: 10%;
    }
}

/* Div header */
.programing_side h3 {
    text-align: center;
    margin: 0;
    padding: 12px 0 12px 0;

}

/* Div links */
.programing_side a {
    font-size: 14px;
    color: darkblue;
    display: block;
    padding: 12px 12px 12px 0px;
    text-align: center;
    text-decoration: none;
    outline: none;
    cursor: pointer;
}

/* Div link on hover */
.programing_side a:hover {
    color: white;
    position: static;
    background-color: #46b7e3;
    border-top-left-radius: 22px;
    border-bottom-left-radius: 22px;
}

.programing_side i{
    cursor: pointer;
    margin-top: 5px;
}

/* programing_sidebar Div */
.rprograming_side {
    color: darkblue;
    width: 10%;
    height: auto;
    background-image: linear-gradient(180deg, #def6ff, #87cfeb);
    border-top-left-radius: 90px;
    border-bottom-left-radius: 90px;
    float: right;
    margin-bottom: 45px;
    margin-top: 5px;
    margin-left: 15px;
    position: absolute;
    right: 0;
    z-index: 2;
}

@media screen and (min-width: 125px){
    .rprograming_side{
        width: 40%;
    }
}


@media screen and (min-width: 475px){
    .rprograming_side{
        width: 30%;
    }
}


@media screen and (min-width: 733px){
    .rprograming_side{
        width: 20%;
    }
}

@media screen and (min-width: 1000px){
    .rprograming_side{
        width: 15%;
    }
}

@media only screen and (min-width: 1375px){
    .rprograming_side {
        width: 10%;
    }
}


/* Div header */
.rprograming_side h3 {
    text-align: center;
    padding: 20px 0 0 0;
}

.rprograming_side i{
    cursor: pointer;
    margin-top: 5px;
}

.programing_encompass{
    text-align: center;
    padding-top: 5px;
    margin-right: 5px;
}

.programing_encompass p{
    margin: 0px;
    padding: 5px 0px 5px 0px;
}

.programing_encompass img{
    height: 65px;
    margin-left: 0%;
    margin-top: 0px;
    margin-bottom: 10px;
}

.programing_encompass:hover{
    color: white;
    cursor: pointer;
    text-align: center;
    position: static;
    background-color: #46b7e3;
    border-top-right-radius: 44px;
    border-bottom-right-radius: 44px;
}

.programing_encompass:active{

}

.rmenu{
    float: right;
    height: 25px;
    margin-right: 10px;
    margin-top: 10px;
    cursor: pointer;
}

.lmenu{
    float: left;
    height: 25px;
    margin-left: 10px;
    margin-top: 10px;
    cursor: pointer;
}

.languageScreen {
    float: right;
    width: 150px;
    height: auto;
    margin-left: 20px;
    margin-bottom: 20px;
    margin-top: 38px;
    position: relative;
    z-index: 0;
}

@media screen and (min-width: 1000px){
    .languageScreen{
        width: 200px;
    }
}

@media only screen and (min-width: 1375px){
    .languageScreen {
        width: 250px;
    }
}

.programing_enlargecanvas {
    display: none;
    width: 50%;
    height: auto;
    left: 25%;
    top: 25%;
    position: absolute;
    z-index: 2;
}

@media screen and (max-width: 732px){
    .programing_enlargecanvas{
        width: 90%;
        left: 5%;
        height: auto;
    }
}

.butStyle{
    color:green;
    font-size:16px;
    padding: 2px 1px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: -9px;
    border-radius: 8px;
    border: 2px solid green;
    cursor: pointer;
}

.butStyle:hover{
    box-shadow: 0 6px 16px 0 rgba(0,0,0,0.24), 0 8px 25px 0 rgba(0,0,0,0.19);
}

.headerfonts {font-size: 50px; text-align: center; color: green; margin-top: 30px;}

@media screen and (min-width: 2001px){
    .playwindow {width: 40%; min-height: 1500px;}
    .headerfonts {font-size: 50px; margin-top: 42px;}
    .giveup {font-size: 22px; margin-top: 32px;}
    .shuffle {font-size: 22px; margin-top: 32px;}
}

@media screen and (max-width: 2000px){
    .playwindow {width: 50%; min-height: 1300px;}
    .headerfonts {font-size: 50px; margin-top: 42px;}
    .giveup {font-size: 22px; margin-top: 32px;}
    .shuffle {font-size: 22px; margin-top: 32px;}
}

@media screen and (max-width: 1500px){
    .playwindow {width: 60%; min-height: 1200px;}
    .headerfonts {font-size: 50px; margin-top: 32px;}
    .giveup {font-size: 20px; margin-top: 0;}
    .shuffle {font-size: 20px; margin-top: 0;}
}

@media screen and (max-width: 1374px){
    .playwindow {width: 80%; min-height: 1300px;}
    .headerfonts {font-size: 50px; margin-top: 35px}
    .giveup {font-size: 20px; margin-top: -5px;}
    .shuffle {font-size: 20px; margin-top: -5px;}
}

@media screen and (max-width: 970px){
    .playwindow {width: 80%; min-height: 1200px;}
    .headerfonts {font-size: 40px; margin-top: 35px}
    .giveup {font-size: 20px; margin-top: 12px;}
    .shuffle {font-size: 20px; margin-top: 12px;}
}

@media screen and (max-width: 770px){
    .playwindow {width: 80%; min-height: 1200px;}
    .headerfonts {font-size: 40px; margin-top: 35px;}
    .giveup {font-size: 20px; margin-top: -15px;}
    .shuffle {font-size: 20px; margin-top: -15px;}
}

@media screen and (max-width: 700px){
    .playwindow {width: 90%; min-height: 1100px;}
    .headerfonts {font-size: 40px; margin-top: 35px;}
    .giveup {font-size: 20px; margin-top: -5px;}
    .shuffle {font-size: 20px; margin-top: -5px;}
}

@media screen and (max-width: 650px){
    .playwindow {width: 100%; min-height: 1100px;}
    .headerfonts {font-size: 40px; margin-top: 25px;}
    .giveup {font-size: 20px; margin-top: -5px;}
    .shuffle {font-size: 20px; margin-top: -5px;}
}

@media screen and (max-width: 450px){
    .playwindow {width: 100%; min-height: 800px;}
    .headerfonts {font-size: 30px; margin-top: 12px;}
    .giveup {font-size: 18px; margin-top: -12px;}
    .shuffle {font-size: 18px; margin-top: -12px;}
}


@media screen and (min-width: 901px) {
    .rprograming_side{display: initial}
    .programing_side{display: initial}
}

@media screen and (max-width: 900px){
    .rprograming_side{display: none}
    .programing_side{display: none}
}

@media screen and (min-width: 1411px) and (max-width: 1997px){
    .keepleft h1 p {
        width: 500px;
        position: absolute;
        left: -15%;
    }
}

