* {
    margin: 0;
    padding: 0;
    font-family: "Paprika";
    font-size: 2vh;
}

html {
    margin: 30px;
    background-color: #e5e5f7;
    background-image:   linear-gradient(30deg, #000000 12%, transparent 12.5%, transparent 67%, #000000 87.5%, #000000), 
                        linear-gradient(150deg, #000000 12%, transparent 12.5%, transparent 67%, #000000 87.5%, #000000), 
                        linear-gradient(30deg, #000000 12%, transparent 12.5%, transparent 67%, #000000 87.5%, #000000), 
                        linear-gradient(150deg, #000000 12%, transparent 12.5%, transparent 67%, #000000 87.5%, #000000), 
                        linear-gradient(60deg, #00000077 25%, transparent 25.5%, transparent 75%, #00000077 75%, #00000077), 
                        linear-gradient(60deg, #00000077 25%, transparent 25.5%, transparent 75%, #00000077 75%, #00000077);
    background-size: 28px 49px;
    background-position: 0 0, 0 0, 14px 25px, 14px 25px, 0 0, 14px 25px;
}

h1 {
    font-size: 6rem;
}

h1, h2, h3, h4, h5, h6, p {
    color: #003366;
    font-weight: bolder;
    text-shadow: 0 0 1px #fff;
}

p {
    font-size: 2rem;
    line-height: 1.5;
    color: anthracite;
}

.bild {
    height: 20vh;
    width: 30vh;
    border: 4px solid turquoise;
    border-radius: 40%;
    transition: transform .7s ease-in-out;
}


.bild:hover {
    transform: scale(1.7);
    border-radius: 50%;
    border-color: pink;
    z-index: 1;
}

.galerie {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    grid-gap: 10px;
}

.header {
    background-color: turquoise;
    padding: 1rem;
    margin: 1rem;
    display: flex;
}

.titel {
    text-align: center;
    margin: auto;
}

.foto {
    height: 20vh;
    width: 20vh;
    border-radius: 50%;
}