@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=Shadows+Into+Light&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Playfair Display', serif;
    font-size: 62.5%;
}

body {
    display: flex;
    background-color: #F6F3EE;
    width: 100vw;
    min-height: 100vh;
}

/* MOBIL */
@media screen and (max-width: 800px) {
    body {
        position: relative;
        flex-direction: column;
        min-height: 100vh !important;
    }

    #right {
        display: none;
    }

    #right img {
        display: none;
    }

    #ink1div img {
        display: none;
    }

    #ink2div img {
        display: none;
    }

    #ink1div {
        background-image: url(ink.png);
        background-size: 175%;
        background-position-x: 110%;
        background-position-y: -45%;
        background-repeat: no-repeat;
        filter: opacity(0.6);
        position: absolute;
        bottom: 0;
        left: 0;
        width: 75%;
        height: 200px;
        z-index: -10000;
    }

    #ink2div {
        background-image: url(ink.png);
        background-size: 175%;
        background-position-x: -25%;
        background-position-y: 90%;
        background-repeat: no-repeat;
        filter: opacity(0.6);
        position: absolute;
        top: 0;
        right: 0;
        width: 60%;
        height: 200px;
        overflow: hidden;
    }
    
    header {
        width: 75%;
        margin-bottom: 20vw;
        margin-top: 20vw;
    }
    
    h1 {
        font-size: 20vw;
        font-weight: 800;
        margin-bottom: 15px;
        line-height: .6;
        width:  fit-content;
    }
    
    #back {
        font-size: 3rem;
        font-weight: 400;
        text-align: right;
        margin-left: 45%;
        line-height: -165px;
        letter-spacing: 7px;
    }
    
    h2 {
        font-family: 'Shadows Into Light', sans-serif;
        font-size: 3rem;
        font-weight: 400;
        text-align: center;
        margin-top: -15px;
    }
    
    p {
        font-size: 1.5rem;
    }

    .maillink {
        font-size: 1.5rem;
        color: black;
        font-weight: 600;
    }
    
    #instalink {
        display: flex;
        align-items: center;
        align-self: center;
        color: black;
        font-size: 2rem;
        font-weight: 600;
        margin: 50px;
        margin-bottom: 100px;
    }
    
    a img {
        margin-right: 5px;
        margin-top: 3px;
    }
    
    
    #left {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        height: 100%;
        
    }
    
    #info {
        width: 75%;
        min-width: 275px;
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    
    #info img {
        width: 165px !important;
        height: 165px !important;
        border-radius: 50%;
        margin-bottom: 25px;
    }
    
    #infotextdiv {
        flex-direction: column;
    }
    
}

/* DESKTOP */
@media screen and (min-width: 801px) {

body {
    display: flex;
    background-color: #F6F3EE;
    width: 100vw;
    height: 100vh;
}

#ink1 {
    position: fixed;
    filter: opacity(0.6);
    width: 950px;
    left: -40%;
    bottom: -40%;
    transform: rotate(15deg);
    z-index: -10000;
}

#ink2 {
    position: fixed;
    filter: opacity(0.6);
    width: 950px;
    top: -35%;
    right: -27%;
    transform: rotate(-58deg);
}

header {
    width: 75%;
    padding: 10%;
    margin-bottom: 75px;
    margin-top: 50px;
}

h1 {
    font-size: 10rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: .6;
    width:  100%;
    margin: auto;
}

#back {
    font-size: 5rem;
    font-weight: 400;
    text-align: right;
    margin-left: 35%;
    line-height: -150px;
    letter-spacing: 10px;
}

h2 {
    font-family: 'Shadows Into Light', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    text-align: left;
    margin-top: -15px;
}

p {
    font-size: 1.5rem;
}

.maillink {
    font-size: 1.5rem;
    color: black;
    font-weight: 600;
}

#instalink {
    display: flex;
    position: absolute;
    right: 45px;
    bottom: 25px;
    align-items: center;
    align-self: flex-end;
    color: black;
    font-size: 2rem;
    font-weight: 600;
    z-index:10000;
}

a img {
    margin-right: 5px;
    margin-top: 3px;
}


#left {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    height: 100%;
}

#info {
    width: 75%;
    display: flex;
    align-items: center;
}

#info img {
    width: 150px !important;
    height: 150px !important;
    border-radius: 50%;
    margin-right: 25px;
}

#infotextdiv {
    flex-direction: column;
}

#right {
    width: 50%;
    height: 100%;
}

#right div {
    width: 500px;
    height: 100%;
}

#filter {
    background-color: #F6F3EE47;
    width: 100%;
    height: 100%;
    position: absolute;
}

#right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    backdrop-filter: black 0.5;
}
}