body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.video-background video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Transparent overlay */
    z-index: -1;
}

.container {
    text-align: center;
    background: linear-gradient(  to bottom,  rgba(255, 255, 255, 0.01) 0%,  rgba(255, 255, 255, 0.1) 35%,rgba(255, 255, 255, 0.7) 40%,  rgba(255, 255, 255, 0.7) 100%);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1;
    position: relative;
    width: 90%;
    max-width: 400px;
}

.profile-picture {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 2px solid #003e80;
}

h1 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 24px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: #ffffff;
    background-color: #003e80;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.link-button:hover {
    background-color: #00254d;
}

i {
    font-size: 20px;
}

a[data-index="0"] {
    background-color: #1ed760 !important; /* Hintergrund rot machen */
}
  
a[data-index="0"]:hover {
background-color: #0eb849 !important; /* Hintergrund rot machen */
}


a[data-index="3"] {
    background-color: #ff0000 !important; /* Hintergrund rot machen */
}
  
a[data-index="3"]:hover {
background-color: #c70000 !important; /* Hintergrund rot machen */
}

a[data-index="2"] {
    background-color: #1ed760 !important; /* Hintergrund rot machen */
}
  
a[data-index="2"]:hover {
background-color: #0eb849 !important; /* Hintergrund rot machen */
}

a[data-index="1"] {
    background-color: #1ed760 !important; /* Hintergrund rot machen */
}
  
a[data-index="1"]:hover {
background-color: #0eb849 !important; /* Hintergrund rot machen */
}



a[data-index="4"] {
    background-color: #c32aa3 !important; /* Hintergrund rot machen */
}
  
a[data-index="4"]:hover {
background-color: #c32aa3 !important; /* Hintergrund rot machen */
}


a[data-index="5"] {
    background-color: #9146ff !important; /* Hintergrund rot machen */
}
  
a[data-index="5"]:hover {
background-color: #7c25ff !important; /* Hintergrund rot machen */
}


a[data-index="6"] {
    background-color: #a6b1b7 !important; /* Hintergrund rot machen */
}
  
a[data-index="6"]:hover {
background-color: #a6b1b7 !important; /* Hintergrund rot machen */
}


