/* 
Mit Punkt für Klassen
Ohne Punkt für Tags
Id mit #
*/

a {
    text-decoration: none;
}

.flex-container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    padding: 0;
    margin: 0;
    list-style: none;
    align-items: baseline;
    align-content: space-around;
}


.flex-item {
    /* width: auto;
    height: auto; */
    margin-top: 5rem;

}

h1 {
    color: beige;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin-top: 3em;

}

body {
    background-color: #222831;
    height: 100%;
}

img {
    border: 10px solid #393e46;
    border-radius: 10px;
    margin: 1rem;

}

footer {
    margin-top: 10rem;
    margin-bottom: 5rem;
    display: flex;
    justify-content: space-evenly;
}

@media only screen and (min-width: 800px) {
        h1 {
        margin-top: 10rem;
    }
  }