/* CSS Document */
html {
    --s: 30px; /* control the size*/
    --c1: #8c2318;
    --c2: #f2c45a;

    background:
        conic-gradient(at 60% 60%,var(--c1) 75%,#0000 0)
            0 0/calc(5*var(--s)/2) calc(5*var(--s)/2),
        repeating-conic-gradient(var(--c1) 0 25%,#0000 0 50%)
            0 0/calc(5*var(--s)) calc(5*var(--s)),
        repeating-conic-gradient(var(--c2) 0 25%,var(--c1) 0 50%)
            0 0/var(--s) var(--s);

    font-size: 62.5%;
    font-family: 'Lexend', sans-serif;
}

body {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    padding-left: 0;
}

li {
    list-style: none;
}

.outer {
        background: darkseagreen;
        padding: 1.5rem;
}

.outer.text {
    width: 70vw;
    height: fit-content;
    max-width: 700px;
    margin: 0 auto;
}

.outer > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: lightcyan;
    border-radius: 1.5rem;
    padding: 1rem 3rem;
    height: 100%;
    font-size: 1.8rem;
}

.outer > div p {
    margin: 2rem 0;
}

.outer > div > .note {
    display: block;
    font-size: 1.6rem;
    color: darkgrey;
    margin: 3rem auto 2rem 1rem;
}
/*
.note {
    font-size: 1.2rem;
} */

@media screen and (max-width: 1023px) {
    html {
        font-size: 0.9765625vw;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 62.5%;
    }
}

@media screen and (max-width: 375px) {
    html {
        font-size: 2.6666666667vw;
    }
}