body {
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    font-weight: 600;
    line-height: 1.2;
}

p {
    text-align: justify; /* optional, only if you want justified text */
}

.jumbotron {
    margin: 1rem 0;
}

.jumbotron hr {
    border-top: 1px dashed #ccc;
    border-bottom: none;
}


.container {
    --bs-gutter-x: 5rem;
    padding-right: calc(var(--bs-gutter-x));
    padding-left: calc(var(--bs-gutter-x));
    margin-right: auto;
    margin-left: auto;
}

.container-fluid {
    margin-left: calc(var(--bs-gutter-x) * -1);
    margin-right: calc(var(--bs-gutter-x) * -1);
    padding: 3rem 5rem;
}

.button{
    height: fit-content;
    width: fit-content;
    padding: 0.5rem 0.7rem;
    font-size: 1rem;
    text-decoration: none;
    color: white;
    background-color: #10689f;
    border: 1.5px solid #196dae;
    border-radius: 4px;
    cursor: pointer;
}

.button.outlined {
    border: 1px solid #084f85;
    background-color: white;
    color: #084f85;
}

.button:hover {
    background-color: #084f85;
    color: white;
}

.button.danger {
    background-color: #d15e5e;
    border: 1px solid #d15e5e;
    color: white;
}

.button.danger:hover {
    background-color: rgb(228, 57, 57);
}

.button.success {
    background-color: #509450;
    border: 1px solid #509450;
    color: white;
}

.button.success:hover {
    background-color: rgb(61, 168, 61);
}

.button.warning {
    background-color: #a1805a;
    border: 1px solid #a1805a;
    color: black;
}

.button.warning:hover {
    background-color: #d8984f;
}

@media (max-width: 700px) {
    .container-fluid {
        margin-left: calc(var(--bs-gutter-x) * -1);
        margin-right: calc(var(--bs-gutter-x) * -1);
        padding: 3rem 2rem;
    }

    .container {
        --bs-gutter-x: 2rem;
    }

    p{
        text-align: left;
    }

    .button {
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .button {
        font-size: 0.8rem;
    }
}

@media (max-width: 500px) {
    .button {
        font-size: 0.7rem;
    }
}
