body {
    display: flex;
    flex-direction: column;
    margin: 0px;
    min-height: 100vh;
}

.oben {
    position: relative;
    height: 30vh;
    background: linear-gradient(to bottom, #43BDD3, #F87EC7);
    display: flex;
    justify-content: center;
    align-items: center;
}

.background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.logo {
    z-index: 2;
    width: 200px;
    margin-top: -30px;
}

.unten {
    height: 70vh;
    background-color: white;
    border-radius: 35px 35px 0 0; /* da vlt no 40px mache*/
    position: relative;
    margin-top: -30px;
    padding-left: 60px;
    padding-right: 60px;
}

h1 {
    font-family: Helvetica, sans-serif;
    size: 30pt;
    color: #E360AE;
}

h2 {
    font-family: Helvetica, sans-serif;
    font-weight: 100;
    font-size: 15px;
    color: #6F7070;
    padding-bottom: 40px;
}

.like_buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.like {
    border: 1px solid #E360AE;
    background-color: white;
    color: #E360AE;
    height: 4vh;
}

.like:hover {
    background-color: #E360AE;
    color: white;
}

.dislike {
    border: 1px solid #E360AE;
    background-color: white;
    color: #E360AE;
    height: 4vh;
}

.dislike:hover {
    background-color: #E360AE;
    color: white;
}

.video-container {
    display: flex;
    justify-content: center;
}

form {
    padding-top: 40px;
}

input{
    border: 1px solid #E360AE;
    border-radius: 10px;
    height: 50px;
    box-shadow: none;
    width: 100%;
    margin-bottom: 15px;
}

input::placeholder {
    color: #6F7070;
    font-weight: 100;
    opacity: 1;
    font-size: 15px;
    padding-left: 10px;
}

button {
    margin-top: 40px;
    border: none;
    height: 50px;
    width: 100%;
    background-color: #E360AE;
    color: white;
    border-radius: 10px;
}

button:hover {
    background-color: white;
    border: #E360AE 1px solid;
    color: #E360AE;
}

p {
    font-family: Helvetica, sans-serif;
    font-weight: 100;
    text-align: center;
}

a {
    text-decoration: none;
    color: #E360AE;
}

.eingabe {
    display: flex;
    gap: 10px;
    width: 100%;
}

.verlauf {
    min-height: 100vh;
    background: linear-gradient(to bottom, rgba(248, 126, 199, 0.4), rgba(67, 189, 211, 0.4));
}

.top {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding-right: 20px;
    padding-top: 10px;
}

.top img {
    width: 35px;
}

.start {
    padding-left: 30px;
    padding-right: 30px;
}

h3 {
    font-family: Helvetica, sans-serif;
    color: #E360AE;
    font-size: 30pt;
    margin: 0;
}

.collection_container {
    padding-left: 0px; /* Setzt den Container für Collections auf 0px */
    width: 100%; /* Nimmt die volle Breite ein */
}

.img_container {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.coll {
    width: 130px;
    height: 180px;
    border-radius: 10px;
    object-fit: cover;
}

figure {
    position: relative;
    width: 130px;
    margin: 0;
}

figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    opacity: 0.75;
}
.text {
    padding-left: 20px;
    padding-top: 10px;

}
figcaption {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-family: Helvetica, sans-serif;
    font-size: 18px;
    text-align: center;
    width: 100%;
}

.tag_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-right: 30px;
}

.tag {
    background-color: white;
    border-radius: 15px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Helvetica, sans-serif;
    color: #E360AE;
    text-align: center;
    width: 100%;
}


.menu_container {
    display: flex;
    justify-content: center;
    width: 100%;
    position: fixed;
    bottom: 40px;
    background: none;

}

.menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #E360AE;
    border-radius: 60px;
    width: 60%;
    height: 7vh;
    gap: 30px;
}

.home_svg {
    width: 40px;
}

.home_svg_active {
    opacity: 0.5;
}

h5 {
    font-size: 10pt;
    font-family: Helvetica, sans-serif;
    font-weight: bold;
    color: #E360AE;
    margin: 0px;
}

h6 {
    font-size: 10pt;
    font-family: Helvetica, sans-serif;
    font-weight: 100;
    color: #E360AE;
    margin-top: 5px;
}


.p_uebersicht{
    font-size: 10pt;
    font-family: Helvetica, sans-serif;
    font-weight: 100;
    color: #E360AE;
    margin: 0px;
}

.uebersicht_container {
    display: flex;
    flex-direction: column;
}

.box {
    display: flex;
    display: row;
    background-color: white;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-radius: 20px;
}

.bild_k {
    padding: 10px;
}

.bb {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

.top__pfeil {
    display: flex;
    justify-content:flex-start;
    width: 100%;
    padding-right: 20px;
    padding-top: 10px;
}

.top_pfeil img {
    width: 35px;
    padding-left: 30px;
}
