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

body {
    line-height: 1.6;
    color: #ffffff;
    background-color: #1a1a1a;
}

header {
    background-color: #000000;
    padding: 16px 0;
    border-bottom: 3px solid #e10600;
}

nav {
    display: flex;
    justify-content: left;
    padding: 0 20px;
}

nav a {
    color: #bbbbbb;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
    margin: 0 16px;
    transition: color 0.3s ease;
}
#hmb {
    width: 40px;
    height: auto;
}
nav a:hover {
    color: #e10600;
}

#homeb {
    color: #e10600;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 32px;
}

#home {
    text-align: center;
    padding: 32px 0;
}

#title {
    font-size: 56px;
    font-style: italic;
    color: #e10600;
    margin-bottom: 16px;
    text-transform: uppercase;
}

h2 {
    font-size: 28px;
    color: #e10600;
    margin-bottom: 16px;
}

p {
    margin-bottom: 16px;
}

#overview {
    background-color: #2a2a2a;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 32px;
    border: 1px solid #e10600;
}

#overview ul {
    list-style-type: none;
    padding-left: 16px;
}

#overview li {
    margin-bottom: 8px;
}

#get-started {
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #e10600;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ff0000;
}

footer {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 16px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    border-top: 3px solid #e10600;
}

.hero-image {
    max-width: 100%;
    height: auto;
    margin-top: 16px;
    border: 2px solid #e10600;
}

#quick-facts {
    background-color: #2a2a2a;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 32px;
    border: 1px solid #e10600;
}

.fact {
    margin-bottom: 16px;
}

.fact h3 {
    color: #e10600;
    margin-bottom: 8px;
}
