@font-face {
    font-family: 'Sweater School';
    src: url('/fonts/sweater_school_rg-webfont.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sweater School';
    src: url('/fonts/sweater_school_bd-webfont.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


html,
body,
div,
span,
button,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    box-sizing: border-box;
    font-family: 'Sweater School', -apple-system, BlinkMacSystemFont, Segoe UI;
    list-style: none
}

html, body {
    height: 100%;
    min-height: 100%;
    overflow-x: hidden; /* prevent horizontal scrollbars */
    overscroll-behavior-y: none;
}

body {
    background: #f7f8fa;
    color: #333;
    line-height: 30px;
    font-size: 18px;
}

details {
    background: white;
    margin-bottom: 0.5rem;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    min-width: fit-content;
}

summary {
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-weight: bold;
    border-radius: 6px;
    list-style: none;
}

details div {
    padding: 0.75rem 1rem;
    border-top: 1px solid #eee;
}

.valid {
    background-color: hsl(148, 49%, 80%);
}

.invalid {
    background-color: #f8d7da;
}

.container {
    width: 100%;
    padding: 2rem;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*Mobile Styles*/

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
}

@media (min-width: 1920px) {

    .container {
        width: 70%;
        margin: auto;
    }
}

/* MATERIALS */


.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
