@font-face {
    font-family: RobotoCondensed;
    src: url(roboto-condensed.ttf);
}

@font-face {
    font-family: RobotoBoldItalic;
    src: url(Roboto-bolditalic.ttf);
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    font-family: RobotoCondensed;
}

header {
    background-color: #1e100c;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

.container {
    max-width: 800px;
    margin: 2rem auto;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.highlight {
    font-weight: bold;
}

strong {
    font-family: RobotoBoldItalic;
}

h2 {
    color: #333;
}

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

ul li {
    margin-bottom: 1rem;
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

a {
    text-decoration: none;
    color: #d94821;
}

footer {
    text-align: center;
    padding: 1rem 0;
    background-color: #1e100c;
    color: white;
    margin-top: 2rem;
}

.aligncenter {
    text-align: center;
}