#wrapper {
    width: 80%;
    margin: 0 auto;
}

#menu {
    background-color: #005eff;
    border: 4px solid #fc0000;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    color: white;
}

#hero {
    background-color: #8f7dc9;
    border: 4px solid #f40000;
    padding: 30px;
    margin-bottom: 140px;
    min-height: 300px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-label {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.bilder-row {
    position: absolute;
    bottom: 0px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 16px;
    transform: translateY(80%);
    z-index: 10;
}

.bild {
    flex: 1;
    height: 160px;
    background-color: #e66c6c;
    border: 1px solid #999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-row {
    display: flex;
    gap: 4px;
    margin-bottom: 4px;
}

.content-row:first-of-type {
    margin-top: 128px;
}

#text1 {
    flex: 0 0 30%;
    height: 100px;
    background-color: #71ab80;
    border: 1px solid #999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#bild-right {
    flex: 1;
    height: 100px;
    background-color: #c3db6d;
    border: 1px solid #999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#bild-left {
    flex: 1;
    height: 100px;
    background-color: #c3db6d;
    border: 1px solid #999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#text2 {
    flex: 0 0 30%;
    height: 100px;
    background-color: #71ab80;
    border: 1px solid #999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#footer {
    background-color: #2e2424;
    border: 1px solid #999;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
    color: white;
}