body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
}

.hero-section {
    height: 100vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    background-image: url('./background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.hero-section p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.hero-section button {
    padding: 10px 20px;
    font-size: 1em;
    color: white;
    background-color: #ff6363;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;       /* Use Flexbox */
    flex-direction: column; /* Stack buttons vertically */
    margin-bottom: 10px;           /* Add vertical space between buttons */
    align-items: flex-start; /* Optional: Align buttons to the left */
}

.hero-section button:hover {
    background-color: #ff4141;
}

.features2 {
    height: 100vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    background-image: url('./features.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.features {
    height: 100vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    background-image: url('./roadmap.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.features h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.features .feature {
    margin-bottom: 20px;
}

.features .feature h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.features .feature p {
    font-size: 1em;
    color: #666;
}

.footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
}
