#header {
    width: 100%;
    background: linear-gradient(to bottom right, black, blue);
    padding-top: 2rem;
    padding-bottom: 2rem;
}

#footer {
    margin-top: 2rem;
    width: 100%;
    background-color: lightgrey;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

#footer p {
    font-size: 0.8rem;
}

.center{
    margin-left: auto;
    margin-right: auto;

    max-width: 57.8em;
}

h1 {
    font-size: 3.5rem;
    color: white;
    margin: 0px;
}

#header p{
    color: white;
    font-size: 1.5rem;
}

#towriteinto {
    background-color: black;
    color: #00FF00;
    font-family: monospace;
}


body {
    font-family: Arial;
    margin: 0px;
    padding: 0px;
}

#codeinputbox {
    font-size: 1rem;
    font-family: monospace;
    height: 370px;
    width: 400px;
    border: 1px solid grey;
}

#codeinputbox:focus {
    border: 1px solid black;

}

[contenteditable] {
    outline: 0px solid transparent;
}


.flexcontainer {
    display: flex;
}

#rundiv {
    width: 100px;

    display: flex;
    justify-content: center;
    align-items: center;
}

#visualiserdiv {
flex-grow: 1;
}
#secondcanvas {
        background-color: #eeeeee;
        width: 100%;
}

#body h3 {
    margin-top: 2rem;
    margin-bottom: 10px;

    font-size: 1.1rem;
}


/* CSS */
.runbutton {
  background-image: linear-gradient(-180deg, #0300dd 0%, #2e2afc 100%);
  border-radius: .3rem;
  box-sizing: border-box;
  color: #FFFFFF;
  display: flex;
  font-size: 16px;
  justify-content: center;

  margin-left: 0.5rem;
  margin-right: 0.5rem;

  padding: 10px;

  text-decoration: none;
  width: 100%;
  border: 0;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}



.runbutton:hover {
  background-image: linear-gradient(-180deg, #020089 0%, #2a28a8 100%);
}


.copybutton {
    margin-bottom: 15px;
}
