* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-light: rgb(0, 0, 0);
    --primary-dark: rgb(255, 255, 255);
    --secondary: rgb(0, 0, 0);
    --background-light: rgb(255, 255, 240);
    --background-soft-light: rgb(230, 230, 210);
    --background-softer-light: rgb(200, 200, 180);
    --background-dark: rgb(30, 30, 70);
    --background-soft-dark: rgb(0, 0, 25);
    --background-softer-dark: rgb(10, 10, 30);
}

a {
    text-decoration: none;
    font-weight: bold;
    color: inherit;
}

p {
    font-size: 1.2rem;
    line-height: 1.5;
}

h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

body {
    font-family: Roboto, sans-serif;
}