body {
    background-image: url('../img/kal.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
}


.homebar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 0;
    z-index: 10001;
    border-top: 2px solid #FFD700;
    border-bottom: 2px solid #FFD700;
    margin-top: 0;
}

.homebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.homebar a {
    text-decoration: none;
    color: rgb(212, 212, 212);
    padding: 10px 15px;
    transition: color 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.homebar a:hover {
    color: #FFD700;
}


.help-section {
    max-width: 800px;
    margin: 0px auto;
    padding: 20px;
    padding-top: 60px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.help-section h1, 
.help-section h2 {
    text-align: center;
    color: #FFD700;
    margin-bottom: 20px;
}

.help-section p {
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: center;
}

.help-section a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.help-section a:hover {
    color: white;
    text-decoration: underline;
}


.help-section iframe {
    display: block;
    margin: 20px auto;
    border: 2px solid #FFD700;
    border-radius: 8px;
}

.text-content {
    position: relative;
    z-index: 1;
}

.textBG {
    position: absolute;
    z-index: 0;
    margin-left: -4.3px;
}


