:root {
    --primary-color: #1a1a1a;
    --secondary-color: #3498db;
    --text-color: #ffffff;
    --overlay-color: rgba(26, 26, 26, 0.85);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
overflow:hidden;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
position:relative;
z-index:5;
}

#logo {
    max-width: 200px;
    max-height: 50px;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url("horizontal.jpg");
    background-size: cover;
    background-position: center center;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: rgb(56 53 53 / 85%);
}

.container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    text-align: center;
}

h1 {
    font-size: 1.6em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

p {
    font-size: 0.95em;
    margin-bottom: 10px;
}

address {
    font-style: normal;
    font-size: 0.85em;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
