:root {
    --ff-sans: "Noto Sans Bengali", sans-serif;
    --ff-serif: "Noto Serif Bengali", serif;
    --clr-bg: #eeeeee;
    --clr-text: #221015;
    --clr-button: #d68181;
}

.container {
    width: min(100% - 3rem, var(--container-max, 60ch));
    margin-inline: auto;
    align-content: center;
    text-align: center;
}

body {
    font-family: var(--ff-serif);
    font-size: 1.7rem;
    font-weight: 400;
    font-style: normal;
    font-optical-sizing: auto;
    font-variation-settings: "wdth" 100;
}

ul {
    list-style: none;
    margin: 0;
    margin-block-start: 0;
    padding-inline-start: 0;
    margin-block-end: 0;
}

li {
    display: inline-block;
    margin-right: 1rem;
    border: 1px solid black;
    border-radius: 0.2rem;
    padding: 0.5rem;
    cursor: pointer;
}

li:hover {
    background-color: var(--clr-button);
}

li > a {
    text-decoration: none;
}

a:link,
a:visited {
    color: var(--clr-text);
}

a:hover,
a:active {
    color: var(--clr-bg);
}

h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
}
