@import url(tic-tac-toe.css);


header {
    width: 100%;
    background-color: rgb(150, 149, 149);
    padding: 15px;
    display: flex; 
    justify-content: center;
    align-items: center;
    gap: 20px;
}
h1 {
    font-size: 3rem;
     color:rgb(244, 235, 235);
 }
 .logo1 {
    height: 100px;
    width: 100px;
}
.tictactarec {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    color: fuchsia;
    font-size: 1,5rem;
    font-weight: bold;
    background-color: aqua;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 10px;
    margin: 15px;
}

h2 {
    padding: 10px;
    font-size: 2rem;
    font-family: initial;
}
 h3 {
        font-size: 0,5rem;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        }

#info {
    border-radius: 50%;
    position: absolute;
    width: 65px;
    aspect-ratio: 1;
    color: crimson;
    font-size: 2rem;
    padding: 4px;
    background-color: rgb(255, 255, 255);

    
}
#infobox {
    transition: all 2s;
    margin: 10px;
    width: 500px;
    height: fit-content;
    aspect-ratio: 1;
    color: rgb(0, 0, 0);
    background-color: rgb(176, 169, 169);
    padding: 20px;

}

#infobox {
    background-color: rgba(0, 0, 0, 0.5); 
    backdrop-filter: blur(15px);
    box-shadow: 5px 5px color(rgb 0, 0, 0,);
}

#info {
    z-index: 50;
}

.relative {
    position: relative;
  
}
main {
display: flex;
}
.a1 {
    font-size: 2rem;
    text-decoration: underline;

}
.closed {
    height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    overflow: hidden;


}
body {
    margin: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: lightblue;
}

#container {
    position: relative;
    width: 100vw;
    height: 100vh;
}


