*{
    margin: 0;
    padding: 0;
    user-select: none;
    font-family: RobotoThin;
    color: rgba(0, 0, 0, 0.75);
}
@font-face {
    font-family: "RobotoThin";
    src: url("assets/fonts/Roboto-Thin.ttf") format("truetype");
}
@font-face {
    font-family: "RobotoRegular";
    src: url("assets/fonts/Roboto-Regular.ttf") format("truetype");
}
body{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.window{
    position: absolute;
    width: 100%;
    height: 100%;
    margin-top: 75px;
}

.container{
    width: 950px;
    height: 534px;
    background-image: radial-gradient(#fff, #e6e6e6);
    border-style: solid;
    border-color: black;
    border-width: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
}
.page{
    position: absolute;
}
#game{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    width: 950px;
    height: 534px;
    opacity: 0;
}
.game-info
{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
h1{
    font-weight: 100
    font-family: RobotoThin;;
}
hr
{
    width: 500px;
}
#info-text
{
    font-weight: 100;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.25);
    position: absolute;
    bottom: 35px;
}
p{
    font-size: 24px;
    font-weight: 100;
    color: rgba(0, 0, 0, 0.75);
}

#board{
    width: auto;
    height: 90%;
    aspect-ratio: 1/1;
    background-color: ghostwhite;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(9, 1fr); /* 3 columns */
    grid-template-rows: repeat(9, 1fr); /* 3 rows */
    gap: 0; /* Remove any space between items */  
    border: 1px solid black;
    border-radius: 15px;
    overflow: hidden;
}
.tile{
    border: 1px solid lightgray;
    color: #554fff;

    font-size: 20px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}
#digits{
    width: auto;
    height: 90%;
    aspect-ratio: 1/9;
    background-color: ghostwhite;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* 3 columns */
    gap: 0; /* Remove any space between items */  
    border: 1px solid black;
    border-radius: 15px;
    overflow: hidden;
}

.number{
    font-size: 20px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

.number-selected{
    background-color: ghostwhite;
}
.tile-start{
    background-color: ghostwhite;
    color: black;
}

.horizontal-line {
    border-bottom: 1px solid black;
}
.vertical-line {
    border-right: 1px solid black;
}
.menu{
    display: flex;
    flex-direction: column;
    padding-top: 25px;
    gap: 15px;
    align-items: center;
    width: 950px;
    height: 534px;
    opacity: 0;
}
.submenu{
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}
.medals{
    display:flex;
    gap:15px;
}
.medal{
    display:flex;
    flex-direction:column;
    justify-content: flex-start;
    align-items: center;
    gap:5px;
    width: 200px;
}
.medal h1{
    font-size: 24px;
}
.medal h2{
    font-size: 18px;
}
.medal img{
    width:150px;
    height:150px;
    filter: brightness(0.1) blur(5px);
}

button{
    width: 200px;
    height: 50px;
    background: none;
    outline: none;
    border: 1px solid black;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 100;
    font-size: 24px;
    transition: 0.25s;
    color: rgba(0, 0, 0, 0.75);
    cursor: pointer;
}
button:hover{
    background-color: rgba(0,0,0,0.1);
}