body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
}

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

.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

#profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
}

#header-text {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

#title-text {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
}

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

.button {
    width: 400px;
    padding: 15px;
    font-size: 20px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    background-color: rgba(255, 255, 255, 0.2);
}

.button i {
    margin-right: 10px;
}

.button:hover {
    background-color: rgba(255, 255, 255, 0.3);
}
}
