@import url('https://fonts.googleapis.com/css2?family=Otomanopee+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');

body{
    font-family: 'Roboto', sans-serif;
    background-color: #c4c4c4;  
}
:root{
    --background-color-1: linear-gradient(145deg, #1e2024, #23272b);
    --shadow-1: 10px 10px 19px #1c1e221e, -10px -10px 19px #262a2e33;
    /* background-color: white; */
}

.hidden{
    display: none;
}
body.dark{
    background-color: #333333;          
    color: white;
    transition: 0.5s all ease-in-out;
    background: var(--background-color-1);
    /* box-shadow: var(--shadow-1); */
}
/* header{
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid red;
} */
/* h1{
    font-size: 45pt;
} */
/* #setup-game{
  display: flex;
  justify-content: center;  
} */
/* button{
    justify-self: center;
} */
p#timer, p#lives{
    font-size: 25px;
    font-weight: bold;
    text-align: center;
}
#game{
    display: flex;
    justify-content: center;
}
#number-container > p{
    border: 1px solid black;
    border-radius: 20%;
    width: 60px;
    height: 60px;
    font-size: 40pt;
    margin-left: 50px;
    margin-top:5px;
    margin-bottom: 5px;
    text-align: center;
    box-shadow: -1px 1px 10px 0px rgba(0,0,0,0.46);
    box-shadow: var(--shadow-1); 
}
#board{
    padding-top: 30px;
    margin-top: 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
    width: 600px;
    height: 600px;
    /* box-shadow: var(--shadow-1); */
}
.tile{
    border: 0.1px solid black;
    border-style: dotted;
    width: 60px;
    height: 60px;
    text-align: center;
    margin: 0px;
    vertical-align: middle;
    font-size: 40pt;
}
p.selected{
    background-color: lightblue;
}
p.incorrect{
    color: red;
}
.rightBorder{
    border-right: 4px solid black;
}
.bottomBorder{
    border-bottom: 4px solid black;
}
footer{
    background-color: lightgray;
}

/* Sumit */

.popup{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: 0.5s all ease-in-out;
}
.content_box{
    position: relative;
    width: 700px;
    height: 500px;
    /* background-color: #fff; */
    border-radius: 20px;
    display: flex;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: #fff;
    background: linear-gradient(to right,#3f36b9 0,#20206b 100%);
    transition: 0.5s all ease-in-out;
}
.content_box .img_box{
    position: relative;
    width: 350px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.content_box .img_box::before{
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background-image: linear-gradient(
45deg,#4a0079 0,#4202b2 50%,#4400b1 100%);
    border-radius: 50%;
    border: 2px solid #fff;
}
.content_box .img_box img{
    position: relative;
    max-width: 250px;
    max-width: 250px;
    min-width: 50px;
    z-index: 1;
}
.head{
    padding-top: 2rem;
    display: flex;
    align-items: center;
}

.content_box .content{
    position: relative;
    width: 350px;
    height: 500px;
}

.content .head h1{
    padding-left: 1rem;
    font-size: 40px;
    line-height: 67px;
    font-weight: 900;
    display: inline-block;
    background: linear-gradient(
90deg,#af6dff 0,#ff448e 25%,#ff9d57 50%,#ff38d3 75%,#00ffdc 100%);
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.button-main{
    font-size: 16px;
    font-weight: 400;
    padding: 0 25px;
    margin-top: 1rem;
    line-height: 56px;
    outline: 0;
    background-color: #ff1f8e;
    border: none;
    -webkit-border-radius: 100px;
    border-radius: 100px;
    display: inline-block;
    position: relative;
    -webkit-box-shadow: 0 10px 15px 0 rgb(233 30 99 / 15%);
    box-shadow: 0 10px 15px 0 rgb(233 30 99 / 15%);
    font-family: 'Roboto', sans-serif;
    color: #fff;
}

#start-btn{
    background: #ffbd84;
    background: -moz-linear-gradient(left,#ffbd84 0,#ff1f8e 100%);
    background: -webkit-linear-gradient(left,#ffbd84 0,#ff1f8e 100%);
    background: linear-gradient(to right,#ffbd84 0,#ff1f8e 100%);
    -webkit-box-shadow: 0 10px 15px 0 rgb(175 0 87 / 20%);
    box-shadow: 0 10px 15px 0 rgb(175 0 87 / 20%);
}