:root{
    --background: #D9D9D9;
    --accent: #064141;
    --text-color: #636363;
    font-size: 20px;
    margin: 0px;
}
@font-face{
    font-family: "atkinson hyperlegible";
    src: url("/assets/AtkinsonHyperlegible-Regular.ttf");
}

html[data-theme='light'] {
    --background: #D9D9D9;
    --accent: #064141;
    --text-color: #636363;
    --logo: url("/assets/logo.svg");
    --phone: url("/assets/telephone-blue.svg");
    --mail: url("/assets/mail-blue.svg");

  }
  
html[data-theme='dark'] {
    --background: #064141;
    --accent: #636363;
    --text-color: #D9D9D9;
    --logo: url("/assets/logo monochrome.svg");
    --phone: url("/assets/telephone-grey.svg");
    --mail: url("/assets/mail-grey.svg");
    
}

body {
    background-color: var(--background);
    color:var(--text-color);
    /*font-family: "Ubuntu Condensed", sans-serif;*/
    font-family: "atkinson hyperlegible";
    font-weight: 400;
    font-style: normal;
    margin: 0px;
    
}
nav{
    position: relative;
    z-index: 5;
    height:2rem;
    background-color: var(--nav-bg);
}
#logo{
    content: var(--logo);
}
.sticky {
    position: fixed;
    z-index: 5;
    top: 0;
    width: 100%;
}
.sticky + .content {
    padding-top: 60px;
}

main{
    width:50vw;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    /*border-style: dashed;
    border-color: black;*/
    height:calc(100vh - 100px);

    display: flex;
    justify-content: start;
    flex-direction: column;
    

}
@media only screen and (max-width: 600px) {
    main{
        width: 100vw;
        max-width: none;
    };
    .contact{
        flex-direction: column;
    }
    
}
@media only screen and (max-width: 1200px) {

    .contact{
        flex-direction: column;
    }
    
}
img#logo{
    width: 75%;
    position: relative;
    margin:0 auto -50px auto;
    z-index: 0;
}

section.hero{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
    font-size: 1.2rem;
    position: relative;
    
}


.contact{
    display:flex;
    justify-content: space-evenly;
}

.contact a{
    text-decoration: none;
    color: var(--text-color);
}
.contact a:before {
    display: inline-block;
    height: 2rem;
    width: 2rem;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;
}

.contact #phone:before {
    content: var(--phone);
}

.contact #mail:before{
    content: var(--mail);
}

section.carousel{
    margin-left: auto;
    margin-right: auto;
    display: flex;
    width: 100%;
}

figure{
    position: relative;
    border-style: dotted;
    border-color: red;
    background-color: white;
    width: 25rem;
    height: 400px;
}

figcaption{
    position: absolute; /* Position the background text */
  bottom: 0; /* At the bottom. Use top:0 to append it to the top */
  background: var(--background);
  color: var(--text-color); /* Grey text */
  width: 100%; /* Full width */
  padding: 20px; /* Some padding */
}

canvas{
    position: absolute;
    z-index: -1;
}
footer{
    background-color: black;
    color:var(--text-color);
    height: 100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin:0 auto;
}

footer #compliance{
    display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 50%;
}
#compliance span{
    padding: 0 100px;
}

footer span{
    margin: 0 auto;
}
footer a {
    margin: 0 auto;
    color: var(--text-color);
}
footer #kvk:before{
    content: "KVK: ";
}

footer #btw:before{
    content: "BTW: ";
}

.sticky-foot{
    position: fixed;
    bottom: 0;
}
/* resets */
/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
html, body {
-ms-overflow-style: none;  /* IE and Edge */
scrollbar-width: none;  /* Firefox */
} 
