/* General Reset
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #fff;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}
body {
    background: rgb(200, 54, 54); 
    background: rgba(255,255,255,0.5) url('background.jpg');
    background-size: cover;
 }

header {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
}

header .logo {
    width: 120px;
    margin: 10px auto;
    display: block;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
    color: #f4c10f;
}

.main-content {
    padding: 50px;
    background: rgba(0, 0, 0, 0.5);
}

.main-content h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.main-content p {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto;
}

footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    font-size: 1em;
    position: relative;
} */
body {
    background: url('background.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    color: #fff;
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}
.overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem 0;
}
header img {
    width: 100px;
    margin-bottom: 15px;
}
footer {
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
}
/* test */