@import url('https://fonts.googleapis.com/css2?family=Outfit&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: #24252A;
}

li, a, button {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #edf0f1;
    text-decoration: none; 
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 3%;
}

.logo {
    cursor: pointer;
}

.nav_links {
    list-style: none;
}

.nav_links li {
    display: inline-block;
    padding: 0px 40px;
}

.nav_links li a {
    transition: all 0.3s ease 0s;
}

.nav_links li a:hover {
    color: deepskyblue;
}

button {
    padding: 9px 25px;
    background-color: rgba(0,136,169,1);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

button:hover {
    background-color: rgba(0,136,169,0.8);
}

.center {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

.center_1 {
    position: absolute;
    left: 50%;
    top: 80%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .center_2 {
    position: absolute;
    left: 50%;
    top: 35%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }


  .wrapper {
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .typing-demo {
    width: 18ch;
    animation: typing 2s steps(22), blink .5s step-end infinite alternate;
    animation-delay: 2s;
    white-space: nowrap;
    overflow: hidden;
    border-right: 5px solid;
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    color: antiquewhite;
  }
  
  @keyframes typing {
    from {
      width: 0
    }
  }
      
  @keyframes blink {
    50% {
      border-color: transparent
    }
  }

  .hrmove {
    height: 2px;
    width: 10%;
    animation-name: stretch;
    animation-duration: 2.5s; 
    animation-timing-function: ease-out; 
    animation-delay: 0;
    animation-direction: alternate;
    animation-play-state: running;
    animation-fill-mode: forwards;
    margin: 0 auto;
  }

  .hrmove_f {
    height: 2px;
    width: 10%;
    animation-name: stretch_f;
    animation-duration: 2.5s; 
    animation-timing-function: ease-out; 
    animation-delay: 0;
    animation-direction: alternate;
    animation-play-state: paused;
    animation-fill-mode: forwards;
    margin: 0 auto;
  }
  
  @keyframes stretch {
    0% {
      background-color: antiquewhite;
      }
  
    100% {
      transform: scaleX(8);
    background-color: antiquewhite;
    }
  }

  @keyframes stretch_f {
    0% {
        transform: scaleX(8);
      background-color: antiquewhite;
      }
  
    100% {
      transform: scaleX(8);
    background-color: antiquewhite;
    }
  }

  @keyframes delayedShow {
    to {
      visibility: visible;
    }
  }
  
  .delayedShow{
    visibility: hidden;
    animation: 0s linear 2s forwards delayedShow ;
  }

  body
{
    margin: 0;
    padding: 0;
    font-family: monospace;
    text-align: center;
    color:antiquewhite;
}

form
{
    margin-top: 50px;
    transition: all 2s ease-in-out;
}

.form-control
{
    width: 600px;
    background: transparent;
    border: none;
    outline: none;
    border-bottom: 1px solid antiquewhite;
    color: antiquewhite;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

input
{
    height: 45px;
    letter-spacing: 2px;
}

input.form-control.submit
{
    background: rgb(151, 148, 143);
    border-color: transparent;
    color: #ffffff;
    height: 50px;
    margin-top: 20px;
    transition: 0.5s;
    letter-spacing: 2px;
}

input.form-control.submit:hover
{
    cursor: pointer;
    background-color: rgb(0, 194, 253);
    transition: 0.5s;
}

::placeholder
{
    color: #ffffff;
    opacity: 0.9;
}

.contact-form
{
    position: absolute;
    top: 45%; /*"Centered"*/
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%) 
}

.bedankttekst
{
  font-size: 48px;
}


.school_logo
{
  position: absolute;
  left: 25px;
  bottom: 25px;
  width: auto;
  height: 100px;
}

.flex-row{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.flex-row i {
  margin-right: 15px;
  font-size: 35px;
}

.flex-row2 {
  display: flex;
  justify-content: center;
  align-items: top;
  flex-direction: row;
}

.flex-row2 i {
  margin-right: 15px;
  font-size: 35px;
}

h1 {
  text-align: center;
  font-size: 70px;
  color: white;
}

h2 {
  text-align: center;
  font-size: 50px;
  color: white;
}

h3 {
  text-align: center;
  font-size: 30px;
  color: white;
}

p {
  text-align: center;
  font-size: 13px;
  color: white;
  margin-left: 25%;
  margin-right: 25%;
}