#pausePage{
    position: relative;
    display: flex;
    z-index: 1;
    width: 100%;
    min-height: 100vh;
    flex-direction: column;
    align-items: center;
    background: var(--ColorThemes0);
    justify-content: center;
}


#pausePage > .pause{
    display: flex;
    position: relative;
    flex-direction: column;
    min-width: 300px;
    min-height: 300px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
#pausePage > .pause > svg{
    fill: var(--ColorThemes1);
    width: 340px;
    height: 340px;
    position: absolute;
    z-index: 1;
}
#pausePage > .pause > h1{
    color: #fff;
    z-index: 2;
    font-size: 35px;
    opacity: 0.8;
}



#pausePage > .bottons{
    display: flex;
    flex-direction: column;
    margin: 10px 0;
    max-width: 300px;
    width: 100%;
    align-items: center;
    justify-content: flex-end;
}
#pausePage > .bottons > button{
    width: 100%;
    margin: 10px 0;
    height: 50px;
    border-radius: 15px;
    border: 2px solid var(--ColorThemes1);
    background-color: var(--ColorThemes0);
    color: rgb(255 255 255 / 70%);
    z-index: 999;
    cursor: pointer;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all .3s ease 0s;
    border-style: solid;
}
@media (hover: hover) {
    #pausePage > .bottons > button:hover{
        border-style: dashed;
    }
}