/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
    background: linear-gradient(to bottom right, rgba(255, 0, 0, 0.6), rgba(128, 0, 0, 0.6)), 
                url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    text-align: center;
}

/* Header */
header {
    background: rgba(50, 0, 0, 0.8);
    padding: 50px 20px;
}

header h1 {
    margin: 0;
    font-size: 3em;
}

header p {
    font-size: 1.2em;
}

/* Sections */
section {
    padding: 50px 20px;
    background: rgba(100, 0, 0, 0.7);
    margin: 20px;
    border-radius: 10px;
}

h2 {
    font-size: 2em;
}

/* Contact Links */
a {
    color: #ff6666;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: rgba(50, 0, 0, 0.8);
    padding: 15px;
    font-size: 0.9em;
}