
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

body html {
  margin: 0;
  padding: 0;
  height: 100vh;
}

body{
  background: #174159;
  font-family: "Raleway", sans-serif;
}

a{
  color: #64d0e4;
  text-decoration: none;
}

nav{
  height: 80px;
}

p{
  font-size: 24px;
  color: #ffffff;
  text-align: center;
}


.desktop {
  background-image: linear-gradient(
    rgba(0, 0, 0, .5)),
    url("dekkers-desktop.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
}

.img-responsive{
  width: 100%;
  height: auto;
}

/* 960px */  
@media only screen and (max-width: 850px) {  
  .desktop{
    display: none;
  }
} 

@media only screen and (min-width: 850px) {  
  .mobile{
    display: none;
  }
} 


.logo img{
  width: 200px;
}