*{
padding: 0%;
margin:0%;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
text-decoration: none;
}
body {
    overflow-x: hidden;
}
.main-width {
    width: 1280px;
    max-width: 95%;
    margin: 0 auto;
    padding: 0px 20px;
}
.hero {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background-image: url("../achtergrond.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
}
header {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}
.logo {
    height: 55px;
    width: 55px;   
    visibility: hidden;
}
nav .nav-list {
    list-style: none;   
}
nav .nav-list li {
    display: inline-block;
}
nav .nav-list li a {
    display: inline-block;
    color: #eee;
    margin-left: 55px;
    font-size: 18px;
    font-weight: 600;
}
nav .nav-list a:hover {
    color: blueviolet;
    transition: .4s;
}
.container {
    padding-top: 190px;
}
.container .hero-text {
    margin-bottom: 40px
}
.container .hero-text h1 {
    color: white;
    font-size: 47px;
    font-weight: 900;
    line-height: 1.2;
    margin: 20px 0px 20px;
}
span {
    color: blueviolet;
}
.container .hero-text h3 {
    color: #eee;
    font-size: medium;
    font-size: 25px;
}
.container .hero-text p {
    width: 440px;
    max-width: 100%;
    color:#eee;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 30px;
}
.social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #eee;
    cursor: pointer;
    margin-right: 20px;
    background-color: rgba(255,255,255,0.1);
    margin-bottom: 35px;
}
.social a:hover {
    transform: scale(1.1);
    background: blueviolet;
    transition: .4s;
}
.box{
    text-align: left;
}
.button {
    color: #eee;
    background: blueviolet;
    font-size: 16px;
    font-weight: 500;
    line-height: 10px;
    padding: 8px 30px; 
    border: 2px solid blueviolet;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease-out;  
}
.overlay {
    position: fixed;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    background: rgba(0, 0, 0, 0);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
}
.overlay:target{
    visibility: visible;
    opacity: 1;
}
.wrapper {
    margin: 70px auto;
    padding: 20px;
    background: blueviolet;
    border-radius: 5px;
    width: 30%;
    position: relative;
    transition: 5s ease-in-out;
}
.wrapper h2 {
    margin-top: 0;
    color: black;
}
.wrapper .close {
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: black;
}
.wrapper .content {
    max-height: 30%;
    overflow: auto;
}
.containerone {
    border-radius: 5px;
    background-color: blueviolet;
    padding: 20px 0;
}
form label {
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 3px;
}
input[type=text], textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid blueviolet;
    border-radius: 5px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}
input [type="submit"] {
    background-color: blueviolet;
    color: black;
    padding: 15px 50px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
