/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f1f5f9;
    color: #111;
}

/* LINKS */
a {
    text-decoration: none;
}

/* BUTTONS */
.btn, .btn-primary, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary {
    background: #2563eb;
    color: #fff;
}

.btn-outline {
    border: 1px solid #2563eb;
    color: #2563eb;
    background: #fff;
}