/* Import Source Sans Pro from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;700&display=swap');

body {
    font-family: 'Source Sans Pro', sans-serif;
    background-color: #000000;
    color: #bebebe;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    width: 90%;
    padding: 40px;
    background-color: #000000;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #FC8300;
    margin-bottom: 20px;
    text-align: center;
    font-size: 48px;
}

h2 {
    color: #FC8300;
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 24px;
}

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

ul {
    margin-bottom: 20px;
    padding-left: 30px;
    font-size: 16px;
}

a {
    color: hsl(24, 100%, 50%);
    text-decoration: none;
}

a:hover {
    color: #FC8300;
    text-decoration: underline;
}

.logo {
    display: block;
    max-width: 200px;
    margin: 0 auto 30px;
}

.footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #dddddd;
    font-size: 14px;
    color: #999999;
}
