:root {
    --color1: #1c1c1c /*#fffff8*/;
    --color2: #d0d0d0 /*#000000*/;
    --color3: #333333 /*#e7e7e7*/;
    --menu: #6b2727;
    --menu_text: #b7b7b7;
    --link: #e75555;
    --shadow: rgba(0, 0, 0, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: var(--color1);
    font-family: "Zen Maru Gothic", serif;
    color: var(--color2);
}

p{
    text-shadow: var(--shadow) 1px 2px;
}

a{
    color: var(--menu_text);
    text-decoration: none;
}

h1{
    font-size: 52px;
    color: transparent;
    background-size: cover;
    background-clip: text;
    -webkit-background-clip: text;
}

h2{
    font-size: 22px;
}

div{
    text-align: center;
    padding-left: 5vw;
    padding-right: 5vw;
    margin: 0;
}

img{
    border-radius: 10px;
    max-width: 300px;
    max-height: 300px;
    margin: 1vw;
}

.title{
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Oswald", sans-serif;
    top: 0;
    left: 0;
}

.title_{
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Oswald", sans-serif;
    margin-top: 100px;
}

.title_text_1{
    background-image: url("schilderijen/1.jpg");
}

.title_text_2{
    background-image: url("schilderijen/3.jpg");
}

.title_text_3{
    background-image: url("schilderijen/2.jpg");
}

.home_text_box{
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
}

.menu{
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--menu);
    color: var(--menu_text);
    width: 110vw;
    height: 10vh;
    transform: rotate(-1deg);
}

.menu_{
    background: var(--menu);
    position: absolute;
    width: 500px;
    height: 300px;
    top: -150px;
    left: -250px;
    padding: 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: end;
    justify-content: center;
}

.overflow{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 20vh;
    overflow: hidden;
    padding: 0;
}

.back{
    color: var(--menu_text);
}

.schilderij{
    background: linear-gradient(45deg, rgba(100, 100, 100, 0.42), rgba(200, 200, 200, 0.42));
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    width: 350px;
    height: 400px;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 16px 32px 0 var(--shadow);
    margin: 2vw;
    border: 2px solid rgba(255, 255, 255, 0.28);
}

.schilderij_box{
    margin: auto;
    padding: 0;
    width: fit-content;
    height: fit-content;
}

.schilderij_text{
    color: var(--color2);
}

.schilderijen{
    display: flex;
    flex-wrap: wrap;
    margin: 25px;
}

.text_box{
    width: 80vw;
    min-height: 75vh;
    margin: 50px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mail{
    background: var(--color1);
    color: var(--link);
}

.mail:hover{
    background: var(--color2);
    color: var(--color1);
}

@media screen and (orientation:landscape) {
    body{
        font-size: 24px;
    }

    .title{
        height: 80vh;
        width: 50vw;
        line-height: 14vw;
    }

    .title_text_1{
        font-size: 15vw;
    }

    .title_text_2{
        font-size: 7.5vw;
    }

    .title_text_3{
        font-size: 5vw;
    }

    .home_text_box{
        position: absolute;
        width: 50vw;
        height: 80vh;
        left: 50vw;
    }

    .menu_{
        font-size: 42px;
    }
}

@media screen and (orientation:portrait) {
    body{
        font-size: 4vw;
    }

    .title{
        width: 100vw;
        height: 40vh;
        line-height: 24vw;
    }

    .title_text_1{
        font-size: 25vw;
    }

    .title_text_2{
        font-size: 12.5vw;
    }

    .title_text_3{
        font-size: 12vw;
    }

    .overflow{
        margin-top: 10vh;
    }

    .home_text_box{
        position: relative;
        width: 80vw;
        height: 30vh;
        left: 10vw;
    }

    .menu_{
        font-size: 4vw;
    }
}