@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=PT+Sans:700|Pacifico|Changa+One);

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    background: url(images/Gemini_Generated_Image_e3298he3298he329.png) ;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}
.title{
    margin-bottom: 1rem;
   font-family: "Changa One", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 90px;
  letter-spacing: 15px;
  color: #e6e3e1;
  text-shadow: 2px 2px 2px #b3b2b1, 2px 2px 2px #8a8785, 2px 2px 2px #6e6d6c;
}
.board{
    height: 72%;
    aspect-ratio: 1;
    border: 2px rgb(255, 0, 0) solid;
}
.btn{
    padding: 1rem 1.5rem;
    font-size: large;
    border: none;
    outline: none;
    margin-top: 1rem;
    background-color: #701e1b;
    border-radius: 0.7rem;
    cursor: pointer;
    color: white;
}
.btn:hover{
    background-color: #eebc5e;
    color: black;
}
.row{
    height: calc(100% / 9);
    width: 100%;
    display: flex;
    justify-content: center;
    flex-shrink: 1;
}
.col{
    width: 100%;
    height: 100%;
    text-align: center;
    outline: none;
    border: 1px rgb(253, 1, 1) solid;
    font-size: 2em;
    background-color: #d6bbeb;
    cursor: cell;
}
.col:hover{
    background-color: #f38200;
}
input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button{
    -webkit-appearance: none;
    margin: 0;
}
input[type=number]{
    -moz-appearance: textfield;
}
.row>.col:nth-child(3),
.row>.col:nth-child(6){
    border-right: 3px black solid;
}
.row:nth-child(3),
.row:nth-child(6){
    border-bottom: 2px black solid ;
}
