﻿/* ------------------------------
            general
 ----------------------------- */
body {
    margin: 0;
    font-family: "KarminaSans-Semibold", "Open Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--secondary-color);
}

header {
    margin-top: 0;
}

input {
    box-sizing: border-box;
}

input:focus { 
    outline: none;
}

input:read-only {
    cursor: not-allowed;
}

input, label {
    display: block;
}

button, a {
    border: none;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
}

/* ------------------------------
           typography
 ----------------------------- */
h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.7rem;
}

h3 {
    font-size: 1.4rem;
}

label {
    font-size: 14px;
}