@font-face {
    font-family: "BIGSHOT";
    src: url("../fonts/big-shot.ttf");
  }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    height: 100vh;
    width: 100vw;
    flex-direction: column;
    font-family: "BIGSHOT";
    display: flex;
    align-items: center;
    justify-content: center;
    background:  #87CEFA ;
    background-image: url("img/background.png");
}



h1{
    font-family: "BIGSHOT";
    color:  #FFFFFF;
    text-shadow: 3px 3px #663399;
    font-size: 40px;
    padding: 5px 10px;
    letter-spacing: 2px;

}


.container{
    padding: 10px 20px;
    text-align: left;
    width: 400px;
    font-size: 15px;
    line-height: 1.4;
    
    background: #a6d7f6;
    position: absolute;
    top: 360px;
    right: 30px;
    font-size: 16px;
    font-weight: normal;
    
  }


  h2 {
    text-align: left;
    font-weight: normal;
    font-size: 20px;
    line-height: 1.4;
    font-family: "BIGSHOT";
  } 



.gameContainer {
    width: 80vmin;
    height: 80vmin;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    border-radius: 5px;
    background:  #4b1581;
}

.gameDetails {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 20px 27px;
    display: flex;
    justify-content: space-between;
}

.play-board {
    width: 100%;
    height: 100%;
    background: #663399;
    display: grid;
    grid-template: repeat(25, 1fr) / repeat(25, 1fr);
}

.play-board .food {
    background: linear-gradient(#FFFFFF, #cf0a0a);
    border: .25vmin solid #cf0a0a;
    border-radius: 15px;
    
}

.play-board .head {
    background: linear-gradient(#00ff00, #FFFF00);
    border: 2px solid #FFFFFF; 
    transform: scale(1.02);
    border-radius: 5px;
    
}
