:root {
    --color-orange: #F57323;
    --color-light-green: #598404;
    --color-dark-green: #436500;
    --color-offwhite: #FEFAEE;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: #fff;
}

button {
    border: none;
    padding: 0;
    font-size: 1rem;
    background-color: transparent;
    color: #fff;
    letter-spacing: 1px;
    cursor: pointer;
}

ol {
    list-style: decimal;
    list-style-position: inside;
}

.font-playfair-display {
    font-family: "Playfair Display", serif;
}

.font-poppins {
    font-family: "Poppins", sans-serif;
}

.font-size-xs {
    font-size: 0.75rem;
}

.font-size-s {
    font-size: 0.875rem;
}

.font-size-m {
    font-size: 1.25rem;
}

.font-size-l {
    font-size: 1.55rem;
}

.font-weight-300 {
    font-weight: 300;
}

.font-weight-500 {
    font-weight: 500;
}

.font-weight-600 {
    font-weight: 600;
}

.font-weight-700 {
    font-weight: 700;
}

.font-weight-800 {
    font-weight: 800;
}