body {
    background: rgb(32, 33, 36) url(images/hintergrund.png) no-repeat center center fixed;
    background-size: cover;
    color: white;
    font-family: "Open Sans", sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

.profile-container {
    text-align: center;
    margin-top: -50px;
    padding: 20px;
}

.profile-picture {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-top: 20px;
    padding: 20px;
}

.profile-name {
    font-size: 24px;
    margin-top: -10px;
    margin-bottom: 20px;
}

nav a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 260px;
    padding: 15px;
    margin: 10px auto;
    text-decoration: none;
    font-size: 18px;
    color: white;
    background-color: rgb(44, 44, 44);
    border-radius: 30px;
    transition: background-color 0.3s, transform 0.2s;
}

nav a span {
    display: inline-block;
    text-align: center;
    width: 100%;
    margin-right: 16px;
}

nav a:hover {
    background-color: rgb(54, 54, 54);
    transform: scale(1.05);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 20px;
}

.streamplan {
    text-align: left;
    padding: 20px;
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
    font-size: 18px;
    background-color: rgb(44, 44, 44);
}

.streamplan td:first-child {
    padding: 5px;
    width: 180px;
}

.streamplan td:last-child {
    width: 50px;
    text-align: right;
}

.close {
    font-size: 18px;
    color: white;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: color;
}

.close:hover {
    color: #ff0000;
}
