body {
    background-image: linear-gradient(to right, rgb(19, 208, 53), rgb(18, 99, 124));
    color: aqua;
}
table, td {
    border: 5px rgb(189, 249, 186) solid;
    font-size: 20px;
}
td {
    width: 100px; height: 100px;
   text-align: center;
}
/* .green {
    width: 300px; height: 300px;
    color: yellow;
    background-color: green;
}
.yellow {
    background-color: yellow;
    color: blue;
} */
td:hover {
    background-color: rgb(207, 94, 42);
    color: blue;
}
input:focus {
    background: rgb(31, 160, 203);
    border-color: yellow solid;
}
img {
    width: 25%;
    transition: 0.5s;
}
img:hover {
border: 5px blue solid;
transform: scale(1.3);
}
hr {
    color: rgb(154, 14, 230);
}
* {
    margin: 0;
    padding: 0;
}
.er {
    margin: auto;
    width: max-content;
}
.Task1-wrapper {
    height: 350px;  
}
.BrawlStars{
    color: black;
    font-size: 25px;
    padding-top: 8px;
    padding-left: 20px;
    width: 200px;
    height: 50px;
    border-radius: 5px;
    box-shadow: 5px 5px black;
    background-color: yellow;
}
.SquadBusters {
    color: rgb(16, 255, 16);
    font-size: 25px;
    padding-top: 8px;
    padding-left: 20px;
    width: 200px;
    height: 50px;
    border-radius: 5px;
    box-shadow: 5px 5px rgb(240, 6, 6);
    background-color: rgb(0, 64, 255);
    position: relative;
    left: 120px;
    top: 10px;
}
.ClashofClans {
    color: rgb(242, 242, 145);
    font-size: 25px;
    padding-top: 8px;
    padding-left: 20px;
    width: 200px;
    height: 50px;
    border-radius: 5px;
    box-shadow: 5px 5px yellow;
    background-color: rgb(86, 3, 100);
    position: relative;
    left: 240px;
    top: 20px;
}
.BoomBeach {
    color: rgb(20, 18, 2);
    font-size: 25px;
    padding-top: 8px;
    padding-left: 20px;
    width: 200px;
    height: 50px;
    border-radius: 5px;
    box-shadow: 5px 5px rgb(14, 46, 188);
    background-color: rgb(170, 182, 68);
    position: relative;
    left: 120px;
    top: 30px;
}
.ClashRoyale {
    color: gold;
    font-size: 25px;
    padding-top: 8px;
    padding-left: 20px;
    width: 200px;
    height: 50px;
    border-radius: 5px;
    box-shadow: 5px 5px rgb(0, 64, 255);
    background-color: rgb(240, 6, 6);
    position: relative;
    left: 0px;
    top: 40px;
}
.menu {
    border: 2px solid rgb(209, 59, 84);
    list-style: none;
    background-color: rgba(0, 0, 0, 0.2);
    font-size: 20px;
    width: 120px;
    padding: 0px;
}
.Demon .PS4 {
    display: none;
}
.Demon:hover .PS4 {
    display: block;
}
.wrapper {
    background-color: white;
    width: 60%;
    padding: 100px 0;
    margin: 0 auto;
}
.center {
    background-color: red;
    border-radius: 100%;
    height: 150px;
    width: 150px;
    margin: 0 auto;
}
.cont {
    margin: 100px auto;
    width: 200px;
}
.battery {
    width: 150px;
    height: 50px;
    border: 5px solid black;
    margin-top: 10px;
    position: relative;
    
}
.battery .after {
    position: absolute;
    background-color: black;
    height: 30px;
    width: 10px;
    top: 10px;
    left: 150px;
}
.red {
    background: linear-gradient(to right, red 30%, white 30%);
}
.yellow {
    background: linear-gradient(to right, yellow 60%, white 60%);
}
.green {
    background-color: green;
}
@media all and (max-width: 1000px) {
    .flex-nav ul {
        flex-wrap: wrap;
    }
    .flex-nav li {
        flex: 1 1 50%;
    }
    .flex-nav .social {
        flex: 1 1 25%;
    }
}
@media all and (max-width: 500px) {
    .flex-nav ul {
        flex-basis: 100%;
    }
    .toggleNav {
        display: block;
    }
    .flex-nav ul {
        display: none;
    }
    .flex-nav ul.open{
        display: flex;
    }
}