
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
}

body {
    margin: 0.5rem;
    height: 100vh;
    text-align: center;
    background-image: url('/img/pattern2.png'); /* URL zum Bild */
    background-repeat: repeat; /* Wiederholt das Bild in alle Richtungen */
    background-size:contain; /* Das Bild wird in seiner Originalgröße angezeigt */
}

p {
    color: aliceblue;
    font-size: 12px;
}
h1 {
    color: aliceblue;
    margin-bottom: 2rem;
}
h2 {
    color: aliceblue;
}
h3 {
    color: aliceblue;
}
.mid {
    display: flex;
    justify-content: center;
}

.theke {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-style: solid;
    border-color: #575556;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.einzeleis {
    display: flex;
    flex-direction: row;
    margin: 0.4rem;
    border-style: solid;
    border-color: #575556;
    border-radius: 1rem;
    min-width: 100px;
    width: 150px;
    height: 80px;
    background-color: rgba(237, 237, 237, 0.092);
}
.left {
    margin: 0.5rem;
    width: 40%;
    display: flex;
}

.left img {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
}

.right {
    align-self: center;

}
.right p{
    text-align: left;
}

.right img {
    width: 15px;
    height: 15px;
    margin-top: 0.2rem;
    margin-right: 0.2rem;
   /* background-color: rgba(255, 255, 255, 0.712); */
    border-radius: 1rem;
    float: left;
}
@media (width >845px) {

    .theke {
        flex-direction: column;
        max-width: 820px;
    }

    .halb {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
}