body{
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 300;
}

.menuMain{
    position: absolute;
    top: 1%;
    left: 1%;
    width: 250px;
    height: 500px;
    border: solid 1px black;
}
.headerMenu{
    position: relative;
    font-size: 1.5em;
    text-align: center;
    top: 10px;
}
.infoDivMain{
    position: relative;
    top: -20px;
}
.infotxt{
    margin: 10px;
    font-size: 1.2em;
}
.sumbitBtn{
    position: relative;
    outline: none;
    border: black solid 1px;
    border-radius: 10px;
    width: 120px;
    height: 30px;
    font-size: 1.2em;
    cursor: pointer;
    transition: 250ms;
    left: calc(50% - 60px);
}
.sumbitBtn:hover{
    background-color: rgb(145, 145, 145);
}
.activeInfo{
    animation: blink 1s infinite linear;
}
@keyframes blink{
    0%{opacity: 1;}
    50%{opacity: 0;}
    100%{opacity: 1;}
}
#reset{
    top: 70px;
    left: calc(50% - 60px);
}
#resetPath{
    top: 50px;
    left: calc(-50% + 66px);
}

.boardMain{
    position: relative;
    left: calc(50% - 350px);
    width: calc(32px * 24);
    height: calc(32px * 24);
    border: solid 1px black;
    display: grid;
    grid-template-columns: repeat(24, 1fr);
}
.brick{
    border: solid 1px black;
}
.selectedBrick{
    background-color: yellow;
}
.endPoint{
    background-color: red;
}
.startPoint{
    background-color: green;
}
.path{
    background-color: blue;
}
.blackListed{
    background-color: black;
}

.infoDiv{
    position: absolute;
    right: 1%;
    top: 1%;
    width: 250px;
    height: 400px;
    border: black solid 1px;
}
.header{
    position: relative;
    top: 1%;
    text-align: center;
    font-size: 1.5em;
}
.info{
    position: relative;
    font-size: 1.1em;
    width: 90%;
    left: 5%;
    top: 2%;
}