html {
    background: rgb(199, 212, 255)
}

body {
    background-color: white;
    max-width: 100vw;
    font-family: Avenir Light, Helvetica, sans-serif;
    margin: 0 auto;

    display: grid;
    
    grid-template-rows: 10vh 15vh 95vh 10vh;
    grid-template-columns: 33vw 33vw 33vw;
    border: 1px solid green;
}

nav {
    grid-area: 1/1/2/4;
    height: 10vh;
    width: 100vw;
    background-color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: right;

    position: sticky;
    top: 0;
    /* border: 1px solid green; */
}

.ce {
    margin-right: 42vw;
    position: inherit;
}

.mail {
    margin-right: 10px;
    margin-left: 5px;
}

.insta {
    margin-right: 5px;
    margin-left: 5px;
}

.y {
    margin-right: 5px;
    margin-left: 5px;
}

p { 
    background-color: rgb(255, 255, 255);
    grid-area: 2/1/3/4;
    text-align: center;
    margin-top: 40px;
}

.Malerei {
    grid-area: 3/1/4/2;
}

.Festival {
    grid-area: 3/2/4/3;
}

.Video {
    grid-area: 3/3/4/4;
}

.Tattoo {
    grid-area: 3/1/4/2;
}

figure {
    width: 450px;
    height: 550px;
    border-radius: 45px;
     /* border-top-left-radius: 45px; */
    filter: grayscale(100%);
     /* border: 2px solid rgb(255, 102, 0); */
    overflow: hidden;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    align-content: center;
}

figure:hover {
    filter: grayscale(0%);
}

figcaption {
    font-family: California Sun, Helvetica, sans-serif;
    text-shadow: 0.1em 0.1em #333;
    text-align: center;
    position: absolute;
    font-size: xx-large;
    color: white;
}

#btn {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100px;
    height: 70px;
    border-width: 4px;
    border-color: black;
    border-radius: 30px;
    background: rgb(117, 117, 202);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    font-family: California Sun;
    cursor: grab;
}

#btn:active {
    font-size: 23px;
}

footer {
    grid-area: 4/1/5/4;
    height: 10vh;
    width: 100vw;
    font-family: Avenir Light, Arial, Helvetica, sans-serif;
    font-size: large;
    background-color: rgb(255, 255, 255);
    /* border: 1px solid rgb(189, 189, 189); */
    display: flex;
    align-items: center;
    justify-content: center;
}

a:link {
    color: #000000;
    text-decoration: none;
}