﻿body {
    font-family: 'Permanent Marker', cursive;
    margin: 0;
    padding: 0;
    background-color: #f3f3f6;
}

h1 {
    /*color: #f3f3f6;*/
}
#websiteTitle {
    display: flex;
    justify-content: center;
    background-color: #bedce3;
    margin-bottom: 10px;
}

#flexContainer{
    display: flex;
    
    justify-content: center;
}

#drawingZone
{
    border: solid;
    background-color: white;
    margin-bottom: -10px;
}

#Submitbtn {
  /*position: absolute;*/
  /*align-self: center;*/
  justify-self: flex-end;
  /*height: 50px;
  width: 100px;
  bottom: 10px;*/
  /*left: 50%;*/
  font-family: 'Permanent Marker', cursive;
}

#info {
    display: flex;
    justify-content: center;
    
}

#info p{
    background-color: #6cb4b8;
    padding: 1em;
    margin: 0;
    width: 25%;
    text-align: center;
}

#board{
    display: flex;
    justify-content: center;
}

#drawingTools {
    display: flex;
    justify-content: center;
}

#clearButton {
    font-family: 'Permanent Marker', cursive;
}

#redButton{
    background-color: red;
    width: 40px;
    height: 40px;
}

#redButton:hover{
    transform: scale(1.1);
}


#blueButton {
    background-color: blue;
    width: 40px;
    height: 40px;
}

#blueButton:hover {
    transform: scale(1.1);
}

#yellowButton {
    background-color: yellow;
    width: 40px;
    height: 40px;
}

#yellowButton:hover {
    transform: scale(1.1);
}

#blackButton {
    background-color: black;
    width: 40px;
    height: 40px;
}

#blackButton:hover {
    transform: scale(1.1);
}

#eraser {
    font-family: 'Permanent Marker', cursive;
    font-size: 0.8em;
    background-color: white;
    width: 60px;
    height: 40px;
}

#earser:hover {
    transform: scale(1.1);
}

#submitContainer{
    display:flex;
    justify-content: center;
    margin-top: 5px;
}

#footer {
    background-color: #bedce3;
    position: absolute;
    bottom: 0;
    width: 100%;
}

#footer p{
    text-align: center;
}
