/* <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900 */

.raleway-100 {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

.header-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Apply margin specifically for desktop screens */
@media only screen and (min-width: 768px) {
    .header-container {
        margin: 1em 30em 1em 30em;
    }
}

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

/* Global Styles */
body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    background-color: #141414;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: #141414;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

h1 {
    font-size: 3em;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
}

/* Navigation Styles */
nav {
    text-align: center;
    margin-top: 20px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 1.2em;
    margin: 0 15px;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #d4af37;
    transition: all 0.3s ease;
}

nav a:hover {
    background-color: #c0c0c0;
}

/* Section Styles */
section {
    margin-bottom: 60px;
}

h2 {
    font-size: 2.5em;
    color: #fff;
    border-bottom: 3px solid #ffd700;
    padding-bottom: 10px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 10px;
}

/* Button Styles */
.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.1em;
    text-decoration: none;
    color: #fff;
    background-color: #ffd700;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.button:hover {
    background-color: #c0c0c0;
}

/* Footer Styles */
footer {
    background-color: #141414;
    color: #fff;
    text-align: center;
    padding: 30px 0;
}

footer p {
    margin: 0;
    font-size: 1.2em;
}

/* Form Styles */
form {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

label {
    font-size: 1.2em;
    display: block;
    margin-bottom: 10px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1.1em;
}

input[type="submit"] {
    background-color: #141414;
    color: #fff;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1.2em;
    transition: all 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #333;
}