:root {
    --citeo-yellow: #FEF08A;
    --citeo-green: #BBF7D0;
    --citeo-dark-purple: #CAB9FC;
    --citeo-medium-purple: #DDD6FE;
    --citeo-light-purple: #E5DCFD;
    --citeo-medium-blue: #B7ECFF;
    --citeo-light-blue: #C1F1FF;
    --citeo-pink: #F472B6;
    --citeo-light-pink: #FBCFE8;
    --citeo-dark-green: #16A34A;
    --citeo-gray: #4B5563;
    --citeo-deep-dark-green: #166354;
}
html {
    font-size: 14px;
}
@font-face {
  font-family: 'Cabin';
  src: url('../fonts/Cabin-VariableFont.ttf') format('truetype');
  font-weight: 400 700;
  font-stretch: 75% 100%;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cabin';
  src: url('../fonts/Cabin-VariableFont.ttf') format('truetype');
  font-weight: 400 700;
  font-stretch: 75% 100%;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('../fonts/BricolageGrotesque-VariableFont.ttf') format('truetype');
  font-weight: 200 900;
  font-stretch: 75% 125%;
  font-style: normal;
  font-display: swap;
}
body {
    background-color: white;
    display: flex;
    flex-direction: column;
    margin: 0;
    min-height: 100vh;

    .content {
        padding-left: 4rem;
        padding-right: 4rem;
        flex: 1;
        margin: 0 0.75rem;
        max-width: 1300px;
        font-family: 'Bricolage Grotesque', Arial, sans-serif;

        h1, h2, h3, h4, h5, h6 {
            font-weight: bold;
            line-height: 1.1;
        }

        h1 {
            font-size: 2.5rem;
        }

        h2 {
            font-size: 2rem;
        }

        h3 {
            font-size: 1.5rem;
        }

        h4 {
            font-size: 1.25rem;
        }

        h5 {
            font-size: 1.2rem;
        }

        h6 {
            font-size: 1rem;
        }

        p {
            line-height: 1.1;
        }

        /*div.information {*/
        /*    .title {*/
        /*        font-weight: bold;*/
        /*        font-size: 3.75rem;*/
        /*    }*/

        /*    .description {*/
        /*        font-weight: normal;*/
        /*        font-size: 2.5rem;*/
        /*    }*/
        /*}*/
    }

    .modal-content {
        .modal-header {
            h2.title {
                font-family: 'Bricolage Grotesque', Arial, sans-serif;
                font-weight: bold;
                font-size: clamp(1.25rem, -0.58rem + 3.8vw, 4rem);
            }
        }

        .modal-body {
            .description {
                font-family: Cabin, Arial, sans-serif;
                font-weight: 500;
                font-size: clamp(1rem, 0.5rem + 1.05vw, 1.75rem);
            }
        }
    }

}

@media (min-width: 500px) {
    body {
        .content {
            margin: 0 1rem;
        }
    }
}

@media (min-width: 700px) {
    body {
        .content {
            margin: 0 1rem;
        }
    }
}

@media (min-width: 1000px) {
    html {
        font-size: 16px;

        body {
            .content {
                h1 {
                    font-size: 3.25rem;
                }

                h2 {
                    font-size: 2.5rem;
                }

                h3 {
                    font-size: 2rem;
                }

                h4 {
                    font-size: 1.5rem;
                }

                h5 {
                    font-size: 1.25rem;
                }

                h6 {
                    font-size: 1rem;
                }
            }
        }
    }
}

@media (min-width: 1300px) {
    body {
        .content {
            margin: auto;
        }
    }
}
