body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url("/images/bg.png");
    background-attachment: fixed;
    background-size: cover;
    color: white;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

#main-header {
    text-align: center;
    margin-top: 20px;
    text-shadow: 0px 0px 10px black;
    font-size: 3rem;
}

header {
    background-color: black;
    height: 200px;
    display: flex;
    justify-content: center;
}

header img {
    height: calc(100% + 25px);
    pointer-events: none;
}

nav {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 15px;
    background-color: black;
    flex-wrap: wrap;
}

nav a {
    padding: 15px;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    color: gray;
}

.sec-selector {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

.lokal-option {
    height: 500px;
    position: relative;
}

.lokal-option img {
    height: 100%;
    object-fit: cover;
}

.sec-selector .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    user-select: none;
    color: white !important;
}

.sec-selector .overlay:hover {
    opacity: 1;
}

.img-label {
    text-shadow: 0px 0px 10px black;
    font-weight: bold;
    position: absolute;
    bottom: 5px;
    left: 0px;
    width: 100%;
    text-align: center;
    pointer-events: none;
    user-select: none;
}

footer {
    background-color: black;
    display: flex;
    flex-direction: column;
    align-content: center;
    gap: 25px;
    padding-top: 15px;
}

footer img {
    height: 100px;
}

#sponsors {
    text-align: center;
    padding: 20px;
}

#social-media {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 1.5rem;
}

#copyright {
    text-align: center;
    padding: 20px;
}

main {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

table, thead, tbody, tr, td {
    border-collapse: collapse;
}

tr {
    background-color: #000e;
}

thead tr {
    background-color: #000 !important;
}

tr:nth-child(2n + 1) {
    background-color: #333e;
}

td {
    padding: 10px 15px;
}

table {
    margin: 20px 5px;
}