/*html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}*/
@import url(https://fonts.googleapis.com/css?family=Permanent+Marker);

body {
    background-color: lightyellow;
    margin: 0;
}

#content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}

#white-board {
    background-color: #f2f2f2;
    position: relative;
    width: 80%;
    height: 80%;
    border-radius: 5px;
    border: 10px solid #adb2bd;
    box-shadow: inset -1px 2px 2px #404040, 6px 9px 1px rgba(0, 0, 0, 0.1);
    overflow-x: hidden;
    overflow-y: scroll;
}

#eraser {
    position: absolute;
    height: 20px;
    width: 100px;
    bottom: 0px;
    right: 100px;
    background-color: #2929a3;
    border-radius: 5px 5px 0 0;
    border-bottom: 6px solid grey;
}

#red-pen {
    position: absolute;
    height: 5px;
    width: 80px;
    bottom: 0px;
    right: 250px;
    background-color: #FD7C6E;
    border-bottom: 3px solid #fc604f;
}

#blue-pen {
    position: absolute;
    height: 5px;
    width: 80px;
    bottom: 0px;
    right: 350px;
    background-color: #1f75fe;
    border-bottom: 3px solid #014ecb;
}

.marker {
    margin: 5px auto 5px auto;
    font-family: "Permanent Marker", sans-serif, arial;
    font-size: 1.5em;
    color: #1f75fe;
    text-align: center;
}

.grammar {
    margin: 0 auto;
    height: 375px;
    width: 600px;
    border: solid 2px #1f75fe;
}



.title{
    font-size: medium;
}

label {
    font-weight: 600;
}