body{
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    transition: 0.9s;
}

section.board{
    display: grid;
    grid-template-rows: repeat(6, 10vmin);
    grid-template-columns: repeat(7, 10vmin);
    grid-gap: .5vmin;
    cursor: pointer;
    background-color: rgb(79, 79, 214);
    padding: 1.5%;
    border: 3px solid rgb(70, 70, 73);
    border-radius: 12% 12% 0 0;
    transition: all 0.9s;
}

div {
    border: 3px solid;
    font-size: 13vmin;
    text-align: center;
    vertical-align: middle;
    border-radius: 50%;
}

button{
   margin-top: 3%;
   bottom: 8%;
   font-size: 50px;
   padding-right: 9%;
   padding-left: 9%;
   cursor: pointer;
   border-style: none;
   display: inline-block;
   border-radius: 2em;
   box-sizing: border-box;
   text-decoration: none;
   font-family: 'Roboto', sans-serif;
   color: #ffffff;
   background-color: #4eb5f1;
   text-align: center;
}

#turn{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    border-radius: 50%;
    height: 2px;
    width: 2px;
    padding:4.5%;
    text-align: center;
    font-size: 8px;
    line-height: 1;
    vertical-align: middle;
    justify-content: space-around;
    position: relative;
}


#back{
    position: fixed;
    left: 1%;
    margin: 2%
}

h1{
    margin: 1%;
    color:rgb(19, 66, 153)
}

#my-canvas{
    position: fixed;
    z-index: -1;
}

@media (min-width: 1000px){
    
    button{
        margin-top: 5%;
        bottom: 8%;
        font-size: 30px;
        padding-right: 9%;
        padding-left: 9%;
        cursor: pointer;
        border-style: none;
        display: inline-block;
        border-radius: 2em;
        box-sizing: border-box;
        text-decoration: none;
        font-family: 'Roboto', sans-serif;
        color: #ffffff;
        background-color: #4eb5f1;
        text-align: center;
     }
     
     #turn{
         display: flex;
         flex-direction: column;
         align-items: center;
         color: white;
         border-radius: 50%;
         height: 2px;
         width: 2px;
         padding:4.5%;
         text-align: center;
         font-size: 25px;
         line-height: 1;
         vertical-align: middle;
         justify-content: space-around;
         position: relative;
     }
     
     #back{
         position: fixed;
         left: 1%;
         margin: 2%
     }
     
     h1{
         margin: 1%;
         color:rgb(19, 66, 153)
     }
     
     #my-canvas{
         position: fixed;
         z-index: -1;
     }
}

/* index page css */
#index-body{
    background-color: rgb(157, 213, 233);
    display: flex;
    align-items: center;
    justify-content: center;
}

#index-image{
    margin-top: 1%;
    margin-left: 15%;
    border-radius: 20%; 
    display: grid;
    align-items: center;
    justify-content: center;
    width:70%;
}

#index-item{
    text-align: center;
    font-family: 'Rowdies', cursive;
    font-size: 50px;
    color: purple;
    text-decoration: none;
} 
