.button {
    display: inline-block;
    border: 3px solid black;
    color: black;
    background-color: skyblue;
    border-radius: 18px;
    font-size: 26px;
    margin-left: 10px;
    margin-bottom: 10px;
}

.video-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-start;
}

.video-group-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-start;
}

.video-item {
    display: flex;
    flex-direction: column;
    align-items: center; /* Zentriert den Text über dem jeweiligen Video */
    text-align: center;
}

.group-box-title {
    font-size: 20px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-align: center; /* Zentriert den Text */
    width: 100%; /* Damit er die gesamte Breite nutzt */
    margin-bottom: 5px; /* Abstand zu den Videos */
    display: block;
}

.group-box-text {
    font-size: 16px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-align: left; /* Zentriert den Text */
    width: 100%; /* Damit er die gesamte Breite nutzt */
    margin-bottom: 5px; /* Abstand zu den Videos */
    display: block;
}

.video-title {
    font-size: 20px;
    font-family: 'Courier New', monospace;
    font-weight: bolder;
    margin-bottom: 5px;
    text-align: center;
}

.video-text-title {
    font-size: 20px;
    font-family: 'Courier New', monospace;
    font-weight: bolder;
    margin-bottom: -5px;
    text-align: center;
}

.video-text {
    font-size: 16px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: left;
}


.video {
    border: 5px solid black;
    border: 5px;
    border-radius: 10px;
    box-sizing: border-box;
    background-color: black;
    padding: 5px;
    margin: 5px;
    display: inline-block;
}