/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.btn {
    padding: 5px 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}


/* Sections */
.firstsection {
    background-color: #f4f4f4;
    margin:20px 20px;
}


.text-big {
    font-size: 2rem;
    margin-bottom: 10px;
        text-align: left;
}

.text-small {
    font-size: 1rem;
    color: #555;
    text-align: left;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    margin-top: 20px;
}
