/*alle Bilder in 3:2*/
body {
    color: rgb(192, 124, 124);
    font-family: ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    font-size: 15;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-inline: 10px;
    max-width: 1152px;
    margin-inline: auto;
}

html {
    height: 100%;
}

main {
    flex: 1;
}

div {
    height: 120px;
    box-shadow: 8px 7px 20px 3px rgba(192, 124, 124);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-radius: 18px;
    padding-inline: 10px;
}

header {
    margin-bottom: 40px;
    margin-top: 40px;
    position: sticky;
    top: 20px;
}

header div {
    background-color: rgb(192, 105, 105);
}

footer {
    height: 50px;
    box-shadow: 8px 7px 20px 3px rgba(228, 124, 124);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-radius: 18px;
    margin-top: 20px;
    margin-bottom: 10px;

    * {
        padding-right: 10px;
        padding-bottom: 10px;
        padding-top: 10px;
    }
}

h1,
h2,
h3 {
    color: rgb(228, 124, 124);
    font-family: Arial, Helvetica, sans-serif;
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 20px;
}

a {
    color: rgb(228, 124, 124);
    margin-right: 10px;
    text-decoration: none;
}

.buttons {
    background-color: rgb(192, 105, 105);
    padding: 10px;
    border-radius: 18px;
}

.buttons:hover,
.buttons:focus {
    background-color: rgba(228, 124, 124, 0.6);
}

.links:hover,
.links:focus {
    background-color: rgba(228, 124, 124, 0.6);
}

.rezepte {
    background-color: rgba(228, 124, 124, 0.6);
    padding: 7px;
    border-radius: 18px;
    margin-bottom: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    width: 200px;
}

.zutaten,
.zubereitung {
    margin-left: 40px;
}

.rezepte:hover,
.rezepte:focus {
    background-color: rgb(192, 105, 105);
}

.links {
    background-color: rgba(228, 124, 124, 0.238);
    padding: 1px;
    border: none;
    color: rgb(192, 105, 105);
}

nav:active+.dropbtn,
nav:focus+.dropbtn {
    visibility: visible;
    height: auto;
    flex-direction:column;
}

.dropbtn {
    border: none;
    padding: 20px, 7px, 20px, 7px;
    border-radius: 18px;
    cursor: pointer;
    background-color: rgba(228, 124, 124, 0.138);
    justify-content: center;
    text-align: center;
    width: 200px;
    gap: 30px;
    margin: 20px;
}

.dropbtn:focus {
    background-color: rgb(192, 105, 105);
}

.kategorie {
    background-color: rgba(238, 178, 178, 0.6);
    border-radius: 18px;
    margin-bottom: 20px;
    height: 50px;
    text-align: center;
    justify-content: center;
    z-index: 1000;
    display: flex;
    align-items: center;
    width: 200px;
    flex-direction: column;
}

.bild {
    width: 100%;
    border-radius: 18px;
    max-width: 500px;
}

.rezepte,
.dropbtn {
    display: flex;
    flex-direction: column;
}

ul {
    display: block;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-basis: 100%;
}

.uebersicht {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

ul .zutaten {
    list-style: circle;
}

ul .zubereitung {
    list-style: decimal;
}