
/* Home */
@import url('https://fonts.googleapis.com/css2?family=Lora&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: 'Lora', serif;
}
html { 
    background: url(achtergrond.jpg) no-repeat top fixed; 
    background-size: cover;
  }
body {
    display: flex;
    max-width: 100%;
    height: 70px;
    flex-wrap: wrap;
}

/* Navigatie bar */
ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
    padding: 10px 10px 10px 10px;
    font-size: 1.5rem;
    color: #ffffff
}
nav {
    height: 160px;
    width: 160vw;
}
ul li .logo {
    position: absolute;
    left: 2vw;
    transition: transform .5s;
}
.logo img:hover {
    transform: scale(1.15);
}
ul li a {
    color: white;
    text-decoration: none;
    font-weight: 100;
}
ul .navtekst {
    display: flex;
    gap: 50px;
    padding-top: 0.6%;
}
ul li a:hover, ul li a:active {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

/* Hoofdpagina */
.main {
    margin: auto;
    width: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.main img {
    height: 400px;
}

.main h1 {
    font-size: x-large;
    color: white;
    width: 400px;
    padding-left: 100px;
    padding-top: 50px;
    text-shadow: 2px 2px 5px black;
}
.main p {
    font-size: large;
    color: white;
    width: 390px;
    padding-left: 100px;
    padding-right: 40px;
    text-shadow: 4px 4px 10px black;
}
.main a {
    border: 0;
    background: whitesmoke;
    padding: 15px 20px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10px;
}
.button {
    width: 100px;
    margin-left: 300px;
    margin-top:  25px;
    color: black;
}

/* Responsive  */
@media (max-width: 900) {
    .main {
        margin: 0 auto;
        gap: 1rem;
        width: 40%;
        margin-top: 60px;
    }
    selection {
        margin-top: 40px;
    }
    ul li .logo {
        position: unset;
    }
    nav ul {
        flex-direction: column;
    }
}
@media (max-width: 750px) {
    .main {
        gap: 1rem;
        padding-bottom: 100px;
        padding-left: 20px;
        padding-right: 20px;
        width: 30%;
    }
    selection {
        margin-top: 50px;
    }
    ul li .logo {
        position: unset;
    }
    nav ul {
        flex-direction: column;
    }
}