/* style.css */

/* Global styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Centered header style */
.header {
    text-align: center;
    margin-top: 50px;
    /* Adjust as needed */
}

/* Line style */
.line {
    width: 100%;
    border-top: 1px solid #000;
    margin: 20px 0;
}

/* Row style */
.row {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Green dot style */
.dot {
    height: 15px;
    width: 15px;
    background-color: #67C819;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}

footer {
    text-align: center;
    margin-top: 50px;
    /* Adjust as needed */
}

footer p {
    margin: 10px 0;
}

/* Adjustments for mobile devices */
@media (max-width: 768px) {
    .header {
        margin-top: 30px;
        /* Adjust as needed */
    }

    .dot {
        height: 15px;
        width: 15px;
    }
}