/* Style für Wildtiere in der Stadt */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Display:wght@300&display=swap');

body {
    background-color: rgb(102, 99, 91);
    font-family: 'Noto Sans Display', sans-serif;
}

h1 {
    text-align: center;
}

div {
    width: 450px;
    background-color: rgb(215, 206, 178);
    padding: 15px;
    margin-top: 50px;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

div img {
    width: 200px;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin: 5px;
}


div h2 {
    margin-top: 5px;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}