/* +++++++++++++++++++++++++++++++ *\
            BASE
\* +++++++++++++++++++++++++++++++ */
* {
    box-sizing: border-box;
}
body, html {
    margin: 0;
    padding: 0;
    /* background-color: var(--bg_container); */
    
}
body {
    min-height: 100vh;
    font-family: 'Nunito Sans';
}
h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

h1 {
    font-size: 24px;
}

h1 > span {
    font-size: 18px;
}

@media (min-width: 480px) {
    h1 {
        font-size: 32px;
    }
    h1 > span {
        font-size: 20px;
    }
}
@media (min-width: 768px) {
    h1 {
        font-size: 40px;
    }
    h1 > span {
        font-size: 24px;
    }
}

p.small-text, p.big-text {
    text-align: center;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.6);
    padding: 0.75rem;
    border-radius: 0.25rem;
}
  
p.small-text a, p.big-text a {
    text-decoration: underline;
    color: inherit;
    font-weight: 700;
}
  
p.big-text {
    font-size: 20px;
}

#js-modal-close {
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    right: 0;
    top: 0;
    border: 2px solid var(--color_danger);
    color: var(--color_danger);
    background-color: var(--color_white);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 2rem;
    line-height: 2rem;
    font-weight: 700;
    margin-left: auto;
    cursor: pointer;
    padding: 0 !important;
}

@media (min-width: 640px) {
    p.big-text {
      font-size: 24px;
    }
}