body {
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  overflow-y: scroll; /* Show vertical scrollbar */
}

.mt1{
  margin-top: 1rem;
}
/* header */
.site-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 2rem;
  margin-bottom: 3rem;
}
#site-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#site-logo svg {
  margin-bottom: 0.5rem;
}
#site-logo p {
  font-weight: 700;
  margin: 0;
}
#site-nav {
  display: flex;
  flex-direction: row;
}

nav ul {
  list-style-type: none;
}

nav ul li {
  float: left;
  margin-right: 0.5em;
}
nav ul li a {
  text-decoration: none; /* no underline */
  color: #333;
}
nav ul li a:hover,
nav ul li a:focus {
  color: #e53211;
}

/* login screen */
body.login {
  background-color: white;
}
.login h1 a {
  color: #e53211;
  font-size: 30px;
  font-weight: 300;
  background-image: none;
  width: auto;
  height: auto;
  text-indent: 0;
}

body.login .button-primary {
  background-color: #e53211;
  border-color: #e53211;
}

body.login .button-primary:active,
body.login .button-primary:focus,
body.login .button-primary:hover {
  background-color: #e53211;
  border-color: #e53211;
}

.fr_section{
  max-width: 1080px; 
margin: 0 auto !important; 
float: none !important; 
  padding:20px;
}

#canvasholder{
  padding-bottom: 70%;
  width:100%;
  position:relative;

}
#imageholder{
  width: 100%;
  height: 100%;
  position: absolute;
}

/* app */
.slideUp {
  animation: slideUp 0.4s;
}

/* uitschrijven */
.warning{
  max-width: 700px;
  font-size: 2rem;
}

.button {
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 2rem;
  margin: 4px 2px;
  cursor: pointer;
  display: block;
  margin: 2rem 0;

}

.buttonred{
  background-color: #e53211;
}

@keyframes slideUp {
  0% {
    transform: translateY(100px);
    opacity:0;
  }
  100% {
    transform: none;
    opacity:1;
  }
}
