
body {
    background-color: #1e1e2f;
}
.container {
    max-width: 800px;
}

h1, h2 {
    color: white;
}

.btn-outline-primary {
    color: white;
    border-color: #007bff;
}

.btn-outline-primary:hover {
    background-color: #007bff;
    color: white;
}





.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

.content {
    max-width: 800px;
}

h1 {
    font-size: 24px;
    margin: 20px 0 10px;
}

p {
    font-size: 16px;
    margin-bottom: 20px;
}

.image-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.image-container img {
    max-width: 100%;
    height: auto;
}

.cta-button {
    padding: 10px 20px;
    font-size: 18px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #0056b3;
}

