/* CSS Reset door Eric Meyer */
/* v2.0 | 20110126 */
/* http://meyerweb.com/eric/tools/css/reset/ */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* Basic styling */
html, body {
    height: 100%;
}
body {
    background-color: #F2F0FE;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
}
/* Fonts */
.main-title {
    margin-top: 100px;
    margin-bottom: 50px;
}
.personal-message {
    font-family: 'Caveat', cursive;
    font-size: 21px;
    letter-spacing: 0.7px;
}
h1 {
    font-family: 'DM Serif Display', serif;
    color: #000000;
    font-size: 56px;
    line-height: 1;
    font-weight: normal;
    margin-top: 10px;
}
h1 span {
    font-style: italic;
    color: #FF3C62;
}
/* Logo */
.logo {
    width: 300px;
    height: auto;
    margin-top: 40px;
    margin-bottom: 40px;
}
/* Navigation */
nav {
    font-family: 'Assistant', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    color: #000000;
}
nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
nav ul li {
    margin-right: 20px;
}
nav ul li:last-of-type {
    margin-right: 0;
}
nav ul li a {
    text-decoration: none;
    color: #000000;
    display: flex;
    align-items: center;
}
nav ul li a img {
    margin-right: 7px;
}
/* Domainchecker */
.domainchecker {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    z-index: 1;
}
input[type="text"],
input[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  outline: none;
  background: none;
}
input[type="text"] {
  background-color: #ffffff;;
  padding: 6px 20px;
  height: 58px;
  width: 700px;
  box-sizing: border-box;
  font-size: 20px;
  color: #58586C;
}
input[type="text"]::placeholder {
    color: #828396; /* Pas de gewenste kleur aan */
}
input[type="submit"] {
  background-color: #000;
  color: #fff;
  height: 58px;
  padding: 20px 30px;
  cursor: pointer;
  font-family: 'Assistant', sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1;
  box-sizing: border-box;
}
input[type="submit"]:hover {
  background-color: #2A3365;
}
input[type="submit"]:focus {
  outline: none;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
/* Illustraties */
.illustrations {
    display: block;
    width: 100%;
    margin-bottom: -38px;
}
.wolk-links {
    position: absolute;
    z-index: 0;
    left :10%;
    top: 36px;
}
.ballon-links-1 {
    position: absolute;
    z-index: 0;
    left :3%;
    top: 32px;
}
.ballon-links-2 {
    position: absolute;
    z-index: 0;
    left :5%;
    top: 400px;
}
.huis-links {
    position: relative;
    z-index: 1;
    float: left;
    margin-left: 30px;
}
.dude {
    z-index: 1;
    position: relative;
    bottom: -70px;
    justify-self: center;
}
.ballon-rechts-1 {
    position: absolute;
    z-index: 0;
    right : 10%;
    top: 20%;
}
.wolk-rechts {
    position: absolute;
    z-index: 0;
    right :3%;
    top: 5%;
}
.huis-rechts {
    position: relative;
    z-index: 1;
    float: right;
    margin-right: 30px;
}
footer {
    position: relative;
    width: 100%;
    background-color: #ffffff;
}
footer:after {
    content: '';
    height: 50px;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    z-index: 0;
}
footer {
    content: '';
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding-bottom: 150px;
    background-color: #ffffff;;
}
/* Responsive queries */
@media (max-width: 1512.98px) {
    .logo {
        margin-top: 10px;
        margin-bottom: 20px;
    }
    .main-title {
        margin-top: 40px
    }
    .main-title h1 {
        font-size: 48px;
    }
    .domainchecker {
        margin-bottom: 30px;
    }
    .illustrations {
        margin-bottom: -76px;
    }
    .ballon-links-2 {
        top: 200px;
    }
    .dude {
        width: 380px;
        height: auto;
        bottom: 0;
    }
    .huis-links {
        width: 300px;
        height: auto;
    }
    .huis-rechts {
        width: 260px;
        height: auto;
    }
    footer {
        height: 50px;
        padding-bottom: 0;
    }
}
/* X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
    .domainchecker {
        max-width: 80%;
    }
    .domainchecker input[type="text"] {
        max-width: 100%;
    }
    footer {
        padding-bottom: 100px;
    }
}
/* Medium devices (tablets, less than 992px) */
@media (max-width: 999.98px) {
    .huis-links, .huis-rechts {
        display: none;
    }
    .ballon-rechts-1 {
        top: 150px;
        right:20px;
    }
}
/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .huis-links, .huis-rechts, .wolk-links, .wolk-rechts, .ballon-links-2 {
        display: none;
    }
    .ballon-rechts-1 {
        top:20px;
        right: 5px;
        width: 60px;
        height: auto;
    }
    .main-title h1 {
        font-size: 32px;
    }

}
/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .logo {
        width: 240px;
    }
    nav {
        font-size: 14px;
    }
    .ballon-links-1, .ballon-rechts-1 {
        display: none;
    }
    .domainchecker {
        display: flex;
        flex-flow: column;
    }
    input[type="text"] {
        font-size: 16px;
        text-align: center;
        margin-bottom: 5px;
    }
    input[type="submit"] {
        font-size: 14px;
        width: 100%;
    }
}