:root {
    --yellow:#FCE190;
    --green:#C1E171;
    --brown:#D49559;
    --black:#232226;
}


body {
    font-family: Open Sans, sans-serif;
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0 auto;
    padding: 0;
}

.max-width-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
}

h1 {
    font-size: 3.1rem;
    margin-bottom: 20px;
    font-weight: bolder;
    text-align: center;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: bolder;
    text-align: center;
}

h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: bolder;
    text-align: center;
}

h4 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bolder;
}

.no-scroll {
  overflow: hidden;
}

.flash {
    position: relative;
    max-width: 1440px;
    margin: 1rem auto;
    padding: 1rem 1.5rem;
    border-radius: 0.375rem;
    color: #fff;
    font-weight: 500;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    opacity: 0.95;
}

.flash-success {
    background-color: #76ab92;
}

.flash-danger {
    background-color: #c48f94;
}

.flash-warning {
    background-color: #c6b992;
    color: #212529;
}

.flash-info {
    background-color: #88bfca;
    color: #212529;
}

.flash-close {
    position: absolute;
    top: 0.25rem;
    right: 0.5rem;
    background: transparent;
    border: none;
    color: inherit;
    font-size: 1.25rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.flash-close:hover {
    opacity: 0.7;
}


@media (max-width: 1440px) {

    .max-width-container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    h3 {
        font-size: 2rem;
    }

    h4 {
        font-size: 1.8em;
    }

    body {
        font-size: 1rem;
    }
    
}