@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');

  /* font-family: 'Barlow', sans-serif; */
  /* font-family: 'Inter', sans-serif; */
  /* oude kleur #3675BB */

  :root {

    --hexBlue: #3575BB;
    --sendiDarkBlueHex: #28356C;
  
    --hexMlGray: #AFB4BF;
    --hexMlLightGray: #efefef;
  
    --sendiDarkBlue: #28356C;
    --sendiBlue: #3575BB;
    --sendiPaleBlue: #e1edfd;
  
    --sendiPurple: #9996cf;
    --sendiDarkPurple: #8986cf;
    --sendiPalePurple: #e9e6ff;
  
    --sendiLime: #4dc1b5;
    --sendiDarkLime: #3db1b5;
    --sendiPaleLime: #a4d9cd;
    --sendiTransparentLime: #a4d9cd50;
  
    --sendiGray: #AFB4BF;
    --sendiPaleBlueGray: #d1d5db;
    --sendiLightGray: #f3f3f3;
  
    --sendiDarkGray: #333333;
  
    --sendiOrange: #F36806;
    --sendiDarkOrange: #D34806;
  
  }

html {
    height:100%;
}

body {
    background: #E1EDFD;
    background: linear-gradient(180deg, rgba(225, 237, 253, 1) 0%, rgba(255, 255, 255, 1) 100%);
    background-position: fixed;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'Inter', sans-serif;
    padding-top:100px;
    
    height:100%;
}


h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow', sans-serif;
  font-weight:800;
  color: #28356C;
}

h1 {
  font-size: 4.5rem;
}

/* responsive aanpassingen */
@media (max-width: 768px) {
  body {
    padding-top: 50px;
  }
  h1 {
    font-size: 2.5rem;
  }
  #topImage{
    display:none;
  }

  
}

@media (min-width: 769px) {
  #bottomImage {
    display: none;
  }
}