:root {
    --lilac: rgb(96, 78, 127);
    --shadow: rgb(25, 26, 27);
}

@font-face {
    font-family: 'Orotund';
    src: url('./assets/Orotund.ttf');
}
@font-face {
    font-family: 'Baskerville';
    src: url('./assets/LibreBaskerville-Regular.otf');
}

html {
    font-family: 'Baskerville', serif;
    color: whitesmoke;
}

body {
    background: url(./assets/background-1.png);
    background-color: var(--shadow);
}

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

a:hover {
    text-decoration: line-through;
}
