* {
    margin: 0;
    padding: 0;
}
html {
    height: 100%;
}
body {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3)) , url('IMG-20241222-WA0050.webp');
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    height: 100%;
    background-position: center;
}
.main {
    width: 100%;
    min-height: 100vh;
    position: relative;
}

/* Header */

nav{
    background-color: #fff;
    display: flex;
    padding: 0% 2%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 130px;
}
.nav-links{
    flex: 1;
    text-align: center;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    margin: 8px 3%;
    position: relative;
}
.nav-links ul li a{
    text-decoration: none;
    font-size: clamp(18px, 2vw, 28px);
    color: #000000;
}
.nav-links a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #000000;
  transition: transform 0.25s ease-out;
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

/* Center */

.torn {
    max-width: -webkit-fill-available;;
}
.join {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    background-color: transparent;
    border: none;
}
.join a {
    color: #ffff;
    padding: 50px;
    font-size: 30px;
    text-decoration: none;
    transition: .5s;
}
.join a:hover {
    padding: 50px 40px;
    transition: .5s;
}
.arrow {
    width: 50px;
}
.DownArrow {
    background-image: url('DowArr.png');
    width: 50px;
    height: 50px;
    margin: auto;
}
.end {
    width: 100%;
    background-image: url("achtergrond.jpg") ;
    background-position: top;
    background-size: cover;
    height: 30vh;
}
.segmeant-container {
    display: flex;
    width: 100%;
    height: 30vh;
}
.text-box p {
    font-size: 140%;
    margin-bottom: 1%;
}
.segmeant {
    display: flex;
    width: 70%;
    justify-content: center; 
    align-items: center;  
}
.text-box, .links {  
    width: 97%;             
}
.links {
    display: flex;
    flex-direction: column;
    margin-bottom: 35%; 
}
.links a {
    margin: 2%;
    font-size: 150%;
    color: black;
}
.second {
    width: 30% !important;
}
@media screen and (max-width: 1440px) {
    .text-box, .links {
        font-size: 70%;
    }
}
@media screen and (max-width: 425px) {
    .end {
        display: none;
    }
}