*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Lato", sans-serif;
}

body{
    background-color: #101010;
    color: white;
    letter-spacing: 3px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
}

.logo{
    display: flex;
    margin: 0 auto;
    padding-bottom: 3%;
    width: 35%;
    border-bottom: solid 1px white;
}

.text_container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.domein{
    color: #9a7e4f;
    font-weight: 400;
    font-size: 2rem;
    margin-top: 25px;
}

.main_container{
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    margin: 50px 0;
}

.nieuwe_website{
    font-size: 2.5rem;
    text-align: center;
    font-weight: 500;
}

.geduld{
    color: #9a7e4f;
    font-weight: 400;
    font-size: 1.5rem;
}

.contact_container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.contact_item a {
    font-weight: 400;
    font-size: 1.5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    transition: 0.3s;
}

.contact_item svg {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    color: #9a7e4f;
}

.contact_item a:hover{
    color: rgb(165, 165, 165);
}

.icon {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border: solid 3px #9a7e4f;
}



@media (max-width: 992px) {

    body{
        height: 100dvh;
    }

    .logo {
        width: 55%;
    }

    .domein {
        font-size: 1.8rem;
    }

    .nieuwe_website {
        font-size: 2rem;
    }

    .geduld {
        font-size: 1.3rem;
    }

    .contact_item a {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {

    body {
        letter-spacing: 2px;
    }

    .logo {
        width: 80%;
        margin-top: 40px;
        padding-bottom: 40px;
    }

    .domein {
        font-size: 1.5rem;
        text-align: center;
        padding: 0 20px;
    }

    .main_container {
        margin: 40px 20px;
        gap: 20px;
    }

    .nieuwe_website {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .geduld {
        font-size: 1.2rem;
        text-align: center;
    }

    .contact_container {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }

    .contact_item a {
        font-size: 1.1rem;
        word-break: break-word;
    }

    .contact_item svg{
        width: 25px;
        height: 25px;
    }

    .icon{
        height: 50px;
        width: 50px;
    }
}

@media (max-width: 480px) {

    .domein {
        font-size: 1.2rem;
    }

    .nieuwe_website {
        font-size: 1.5rem;
    }

    .geduld {
        font-size: 1rem;
    }

    .contact_item a {
        font-size: 1rem;
    }
}