@font-face {
    font-family: "DM Sans", sans-serif;
    src: url('../fonts/DMSans-VariableFont_opsz\,wght.woff2') format('woff2');
    font-weight: 400 700;
    font-style: normal;
}

@font-face {
    font-family: "Epilogue", sans-serif;
    src: url('../fonts/Epilogue-VariableFont_wght.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

:root {
    --color-darkbrown: #794B21; /* old */
    --color-darkbrown: #5E4127;
    --color-yellow: #FFFFCD; /* old */
    --color-yellow: #FFFFDC;
    --color-pink: #F5CEDD;
    --color-mint: #C7F1EF; /* old */
    --color-mint: #DFFAF2;
    --color-off-white: #FFFFF6;
    --color-sheer-off-white: #FFFFF690;
}

body {
    background-color: var(--color-off-white);
    background-size: 800% 800%;

    font-family: "DM Sans", sans-serif;
    color: var(--color-darkbrown);
    margin: 0;
    padding: 0;
}

/* ------------------------------- */
/* ----- SIZING PAGE STYLING ----- */
/* ------------------------------- */

.sizing-title {
    text-shadow: 0 4px 10px rgba(0,0,0,0.25);
    line-height: 1.3;
    font-weight: 600;
}

.description {
    font-family: "Epilogue", sans-serif;
    font-style: italic;
    opacity: 0.8;
    line-height: 1.5;
}

span {
    font-weight: bold;
}

.table-container {
    width: 100%;
    border-radius: 12px;
    background: var(--color-yellow);
    margin: 24px 0;
    overflow: hidden;
}

.sizing-table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Epilogue", sans-serif;
    text-align: center;
    table-layout: fixed;
}

.sizing-table th,
.sizing-table td {
    padding: 12px 4px;
    color: var(--color-darkbrown);
}

.sizing-table th {
    background: var(--color-mint);
    font-family: "DM Sans", sans-serif;
    border-bottom: none;
}

hr {
    border: solid 0.5px var(--color-darkbrown);
    margin: 20px 0;
    width: 100%;
}

/* Mobile responsiveness */
@media (max-width: 500px) {
    .sizing-guide {
        padding: 20px 16px;
    }
    
    .sizing-title {
        font-size: 1.75rem;
        margin-bottom: 24px;
    }
}