/* Colors */
:root {
    --m-blue: #1E447B;
    --m-orange: #D77831; 


}

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 10px 20px 5px 5px;
}

.m-container {
    width: 100vw;
    margin: 50px 10px 50px 10px;
}

.m-card {
    width: 100vw;
    margin: 50px 10px 50px 10px;
    border: solid;
    border-block-color: gray;
    border-radius: 15px;
}

.m-header {
    background-color: var(--m-blue);
    color: white;
    text-align: center;
    font-size: large;
    margin: 5px 5px 5px 5px;
}

.justify-text {
    text-align: justify;
}

