
:root { /* adjusts everything */
  box-sizing: border-box;
  font-size: 150%;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

body {
    font-family: Montserrat;
    background-image: linear-gradient(40deg, #4ebde99d, #effa55be); 
    background-position: center;
    background-attachment: fixed;
}

.topBar {
    overflow: hidden;
    background-color: rgb(59, 59, 59);;
}
.topBar a {
    float: left;
    font-size: 120%;
    text-align: center;
    padding: 25px 30px;
    text-decoration: none;
    color: rgb(248, 248, 248);
}
.topBar a:hover {
    background-color: rgb(250, 164, 154);
}

input {
    margin: 0 0 0 43%;
}

#canvas {
    top:0;
    bottom: 0;
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

p {
    font-family: inherit;
    font-size: 120%;
    text-align: center;
}

h1 {
    font-family: inherit;
    text-align: center;
}

#loading {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: #222222;
    z-index: 1000;
}

#loading p {
    z-index: 1001;
    color: ivory;
}

#input{
    text-align: center;
    margin: 0 auto;
}


