@import url('https://fonts.bunny.net/css2?family=Nunito:wght@400;700&display=swap');

body {
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    background-color: #f3f4f6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
}

/* custom */

.logo {
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 50%;
}

@media (min-width: 768px) {
    .logo {
        margin-bottom: 10px;
        max-width: 100%;
    }
}

.box {
    margin-bottom: 20px;
    padding: 30px;
    text-align: center;
    background-color: #fff;
    border-radius: 7px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, .1);
}

.box p {
    text-align: left;
}

.btn-primary {
    color: #fff;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background-color: #111827;
    border-color: #111827;
    border-radius: 7px;
}

.btn-primary:hover {
    color: #fff;
    background-color: #1f2937;
    border-color: #1f2937;
}
