* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: white;
  color: black;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

.no-scroll {
  overflow: hidden;
}

.no-select {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Chrome/Safari/Opera */
  -khtml-user-select: none;    /* Konqueror */
  -moz-user-select: none;      /* Firefox */
  -ms-user-select: none;       /* IE/Edge */
  user-select: none;           /* non-prefixed version, currently not supported by any browser */
  cursor: default;
}

.click-to-scroll {
  cursor: pointer;
}

.big {
  font-size: 22px;
  line-height: 30px;
}

#canvas {
  background: white;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

#canvas .frame {
  display: none;
}

h1 {
  font-weight: 600;
}

h2 {
  margin-bottom: 0;
  margin-top: 0;
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
}

h3 {
  font-size: 1em;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 0;
}

p {
  margin-top: 0;
  margin-bottom: 1.42em;
}

a {
  color: inherit;
  transition: .1s color;
}

a:hover {
  color: silver;
}

.pdf-download,
.under-construction {
  position: absolute;
  bottom: 40px;
  display: block;
}

.pdf-download {
  text-decoration: none;
  font-size: 48px;
  font-weight: 600;
  left: 40px;
  line-height: 1;
}

.pdf-download:hover,
.info-link:hover {
  color: #444;
}

.under-construction,
.info-link {
  font-size: 24px;
  line-height: 30px;
  text-align: right;
  right: 40px;
  font-weight: 600;
}
.under-construction p {
  margin: 0;
  padding-bottom: 2px;
}

.info-link {
  position: absolute;
  top: 30px;
  text-decoration: none;
}

h1.site-title {
  position: absolute;
  top: 30px;
  left: 40px;
  margin: 0;
  padding: 0;
  font-size: 32px;
  letter-spacing: -.5px;
}

#about {
  padding-top: 20px;
  padding-bottom: 20px;
/*
  background: #ffffff;
  background: -moz-linear-gradient(top,  hsl(0,0%,100%) 0%, hsl(0,0%,93%) 100%);
  background: -webkit-linear-gradient(top,  hsl(0,0%,100%) 0%,hsl(0,0%,93%) 100%);
  background: linear-gradient(to bottom,  hsl(0,0%,100%) 0%,hsl(0,0%,93%) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 );
*/
}

#about ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  margin-top: 0;
}

#about img {
  max-width: 100%;
}

.year {
  text-indent: -3em;
  padding-left: 3em;
}
.year span {
  display: inline-block;
  min-width: 3em;
  text-indent: 0;
  padding-right: .6em;
}

.container-fluid {
  padding-left: 40px;
  padding-right: 40px;
}

.col-info,
.col-cv,
.col-news,
.col-copyright,
.col-mondriaan {
  padding-top: 20px;
  padding-bottom: 20px;
}

.col-news figure {
  margin-left: 0;
  margin-right: 0;
}

.col-copyright {
  text-align: right;
}

.col-copyright p {
  margin: 0;
  font-weight: 400;
  font-size: 12px;
}

.mondriaan img {
  width: 50px;
  height: auto;
}

.asterisk {
  color: #6B0505;
}

input[type="email"],
input[type="text"],
input[type="submit"] {
  border: 2px solid black;
  height: 40px;
  outline: none;
  background-color: white;
}

input[type="email"],
input[type="text"] {
  width: 100%;
  padding-left: 10px;
}

input[type="submit"] {
  font-weight: 600;
  padding-left: 10px;
  padding-right: 10px;
  transition: .2s background-color, .2s color;
}

input[type="submit"]:hover {
  color: white;
  background-color: black;
}

input[type="radio"] {
  display: none;
}

input[type="radio"] + label span {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  border: 2px solid black;
  border-radius: 50%;
  margin-right: 5px;
}

input[type="radio"] + label span:after {
  content: "";
  display: block;
  border-radius: 50%;
  width: 0px;
  height: 0px;
  margin-left: 6px;
  margin-top: 6px;
  transition: .2s margin, .2s height, .2s width;
}

input[type="radio"]:checked + label span:after {
  width: 8px;
  height: 8px;
  margin-left: 2px;
  margin-top: 2px;
  background-color: black;
}

#subscribe-button {
  cursor: pointer; 
  user-select: none;
}

.mc-field-group {
  margin-top: 20px;
}

#mce-error-response,
#mce-success-response {
  padding-bottom: 20px; 
}

#mce-error-response {
  color: #6B0505;
}

#mce-success-response {
  color: #056c0e;
}

@media (max-width: 767px) {
  .col-copyright,
  .col-mondriaan {
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .col-cv {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
}

@media (max-width: 400px) {
  .info-link {
    display: none;
  }
  .big {
    font-size: 1.2em;
    line-height: 1.2;
  }
}

@media (max-width: 650px) {
  .under-construction {
    display: none;
  }
}
