:root{
    --ink: rgb(56, 54, 49);
    --paper: rgb(172, 193, 212);
    --accent: #5c13e4;
}

* {
    box-sizing: border-box;
}

body {
    color:var(--ink);
    background-color:var(--paper);
    font-size: 1rem;
    line-height: 1.5;
    max-width: 65ch;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    padding-inline: 1rem;
    margin: auto;
    align-items: center;
    justify-content: center; 
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.1;
    font-weight: normal;
    margin-block: 1rem 0; 
}

h1{
    font-size: clamp(2.5rem, 12vw, 10rem);
}
h2{
    font-size: clamp(2rem, 10vw, 8.5rem);
}
h3{
    font-size: clamp(1.75rem, 9vw, 7rem);
}
h4{
    font-size: clamp(1.5rem, 7vw, 5.5rem);
}

h5{
    font-size: 4rem;
}

h6{
    font-size: 2.5rem;
}

hr {
    margin-block: 1rem 0; 
    border-color: black;
}

ul {
    list-style-type: circle;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

nav {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    padding: 2rem 0;
    border-top: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    margin-bottom: 1.5rem;
}

p {
    text-align: left;
    margin-block: 1rem 0; 
}

img {
    max-width: 100%;
    height: auto;
}