body{
  background:
    radial-gradient(circle at 5px 5px, rgba(90,74,66,.14) 0 1px, transparent 3px) 0 0/24px 24px,
    #f8f7e2;
  background-attachment: local;
  color:#201a17;
}
 .mainMenuPage{
    width: 100vw;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
/*--------------------- SIMON ---------------------*/
.simon_container{
    border: solid 20px #201a17;
    border-radius: 50%;
    width: 420px;
    height: 420px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    gap: 20px;
    background-color: #201a17;
    position: relative;
    margin: auto;
    z-index: 0;
}
.simon_info_container{
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 70%;
    height: 25%;
    background-color: #9acbd0;
    text-align: center;
    z-index: 8;
    display: none;
    align-items: center;
    justify-content: center;
}
.infoContainer p{
    font-size: 3rem;
    font-weight: bold;
}
.simon_pads{
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 8%;
    z-index: 3;
    cursor: pointer;
    pointer-events : auto;
}
.simon_pads_bellow{
    position: absolute;
    z-index: 1;
    width: 180px;
    height: 180px;
    border-radius: 8%;
}
#simon_pad_up_left{
    background-color: hsl(153, 100%, 41%);
}
#simon_pad_up_right{
    background-color: hsl(357, 99%, 47%);
}
#simon_pad_down_left{
    background-color: hsl(59, 98%, 45%);
}
#simon_pad_down_right{
    background-color: hsl(204, 99%, 42%);
}
.pads_bellow_up_left{
    background-color: hsl(153, 100%, 61%);
    top: 0;
    left: 0;
}
.pads_bellow_up_right{
    background-color: hsl(357, 100%, 67%);
    top: 0;
    right: 0;
}
.pads_bellow_down_left{
    background-color: hsl(59, 100%,  65%);
    bottom: 0;
    left: 0;
}
.pads_bellow_down_right{
    background-color: hsl(204, 100%, 62%);
    bottom: 0;
    right: 0;
}
.simon_center_pad{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 130px;
    height:130px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    z-index: 3;
    background: 
    radial-gradient(closest-side, #201a17 79%, transparent 80% 100%),
    conic-gradient(red 0%, #201a17 0);
}
.simon_center_info_container{
    color: white;
    font-size: 4rem;
}
.score{
    position: relative;
    z-index: 5;
}
