body {
    background-image: url("img/blumen.jpg");
    background-size: cover;
    margin: 0;
}

h1 {
    font-size: 32px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
p {
    font-size: 18px;
}

.links {
    color: white;
    margin: 5px;
    text-decoration: none;
}

.links:hover {
    text-decoration: underline;
}

.logo {
    box-shadow: 5px 5px 10px rgb(4, 4, 4);
    margin: 24px;
    width: 65%; 
}

.zeitlogo {
    box-shadow: 5px 5px 10px rgb(4, 4, 4);
    margin: 24px;
    width: 65%; 
}


.headimage {
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeimage {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 15%;
    padding-right: 15%;
}

.bild {
    margin: 24px;
    width: 25vw;
   transition: transform 0.2s;
   box-shadow: 5px 5px 10px rgb(4, 4, 4); 
}

.bild:hover {
    transform: scale(1.2);
    box-shadow: 10px 10px 20px rgb(62, 61, 61);
}

.containerbilder {
    display: flex;
    flex-direction: row;
    margin: 24px;
}

.text {
    margin: 24px;
    width: 65%;
    
}

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

.rechtliches {
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: black;
    width: 65%;
    margin: 10px;
}

.copyright {
    color: white;
    font-size: 16px;
    margin: 18px;
}

.header {
    margin: 5px;
}

.impressum {
    display: flex;
    align-items: center;
    flex-direction: column;
    
    margin: 20px;
}

.zurück {
    font-size:18px;
    margin: 24px;
    color: black;
}
.zurück:hover {
    color: grey;
}

@media screen and (max-device-width: 680px) {
    h1 {
        font-size: 24px;
    }
    .bild:hover {
        transform: scale(2);
        box-shadow: 10px 10px 20px rgb(62, 61, 61);
    }
}