html, body {
    height: 100%;
    width: 100%;
}
body {
    margin: 0;
    background-color: #fff;
    font-family: "Lato", Avenir, Helvetica, Arial, sans-serif;
    box-sizing: border-box;
}

h1, h2, h3 {
    font-weight: inherit;
    margin: 0;
}

.small-numbers {
    font-size: .75em;
  }

.spacing-15 {
    height: 15px;
}

.spacing-30 {
    height: 30px;
}

.spacing-45 {
    height: 45px;
}

.spacing-60 {
    height: 60px;
}

button {
    background-color: #333;
    color: white;
    padding: 15px 50px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;

    &.btn-inverse {

    }
}

.blur-background {
    backdrop-filter: blur(5px);
}

.font-thin {
    font-weight: 300;
}

.pointer {
    cursor: pointer;
}