@import url('https://fonts.googleapis.com/css2?family=Afacad+Flux:wght@100..1000&family=DM+Serif+Text:ital@0;1&family=Kumbh+Sans:wght@100..900&family=Mozilla+Headline:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap');



.gameover {
    width: 30%;
    height: 30%;
    background-color: blue;
    position: absolute;
    font-family: "Poppins", sans-serif;
    animation: moveDown 1s 0.5s forwards;
    background-color: rgba(59, 68, 75, 0.5);
}

.gameover-text {
    width: fit-content;
    margin: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.gameover button {
    box-shadow: 10px 5px 5px gray;
    width: 130px;
    height: 50px;
    display: block;
    margin: auto;
    font-weight: 900;
    font-family: "Poppins", sans-serif;
    background-color: gray;
    color: white;
}

.gameover button:hover {

    cursor: pointer;
    background-color: hsl(142, 70%, 40%);
    transition: 0.2s;

}

.container {
    width: 50%;
    height: 100%;
    background-color: rgba(128, 128, 128, 0.8);
    margin: auto;
    border-radius: 5px;
    display: flex;
}

#restart-game {
    align-items: center;
}

@keyframes moveDown {

    from {
        left: 0%;
        transform: translateX(0px);
    }

    to {
        transform: translateX(-60%);
        left: 50%;
    }

}

.pause-icon {
    width: 50px;
    height: 50px;
    background-color: blue;
    border-radius: 50%;
    position: relative;
    left: 90%;
    top: 60%;
}

.pause-icon i {
    position: absolute;
    z-index: 1;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
}

.pause-icon:hover {
    cursor: pointer;
}

.pause-container {
    position: fixed;
    top: 10%;
    left: 90%;
    display: none;
}

.resume-icon {
    width: 50px;
    height: 50px;
    background-color: blue;
    border-radius: 50%;
    position: fixed;
    top: 10%;
    left: 93%;
    display: none;
}

.resume-icon i {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateY(-50%);
}


.pause-page {
    width: 30%;
    height: auto;
    background-color: blue;
    font-family: "Poppins", sans-serif;
    left: 35%;
    position: absolute;
    display: none;
    background-color: rgba(59, 68, 75, 0.5);
    border-radius: 5px;
    font-size: large;
}

.pause-page-instruction {
    font-weight: 900;
    width: fit-content;
    margin: auto;
    background-color: black;
    border: 2px solid gold;
    border-radius: 10%;
    padding-left: 5%;
    padding-right: 5%;
}

.pause-page-instruction p {
    color: orange;
    font-weight: 700;

}

.pause-page .button-container {
    display: block;
    width: 100%;
    height: auto;
    background-color: gray;
    background-color: rgba(120, 120, 120, 0.8);
    padding-top: 1px;
    border-radius: 5px;
    padding-bottom: 5px;
}

.pause-page button {
    box-shadow: 10px 5px 5px gray;
    width: 130px;
    height: 50px;
    display: block;
    margin: auto;
    font-weight: 900;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    background-color: gray;
    color: white;
}

.pause-page button:hover {
    cursor: pointer;
    background-color: hsl(142, 70%, 40%);
    transition: 0.2s;
}

.pause-page .pausebtn {
    margin-top: 20px;
}

.container2 {
    width: 200px;
    height: 200px;
    position: relative;

    position: absolute;
    overflow: hidden;
}

.allslide {
    width: 100%;
    height: 100%;
    display: flex;
    transition: width 2s;

}


.indicator {
    display: flex;
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
}

.indicator span {
    width: 20px;
    height: 20px;
    background-color: gray;
    border-radius: 50%;
}

.indicator .active {
    background-color: red;
}


#uploadBox {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 200px;
    width: 200px;
}

.plus-icon {
    width: fit-content;
    font-size: 50px;
    margin: auto;
    font-size: 48px;
    color: #888;
    pointer-events: none;
}



.gobacktohomecontainer button {
    width: 200px;
    height: 30px;
    margin-top: 0px;
}

.containerforcanvaspage {
    display: flex;
    margin-top: 30px;
    justify-content: space-between;
}