@font-face {
    font-family: 'WorkSans';
    src: url('work-sans.regular.ttf');
}

@font-face {
    font-family: 'Alice';
    src: url('Alice-Regular.ttf');
}

@font-face {
    font-family: 'Bodoni';
    src: url('BodoniFLF-Roman.ttf');
}

body {
    margin: 0;
    background-image: url('bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    height: 100vh;
}

* {
    text-align: center;
}

ol {
    display: flex;
    flex-direction: row;
    list-style: none;
    justify-content: space-around;
    gap: 24px;
    padding-left: 0;
    margin-top: 10px;
    padding: 0 10px;
    overflow-x: auto;
}

li {
    flex-grow: 1;
    background-color: #bcbefa;
    padding: 5px 5px;
    border-radius: 13px;
    text-wrap: nowarp;
    align-content: center;

    transition: background-color 0.3s ease-out;
}

li:hover {
    background-color: #8e91eb;
}

a {
    font-size: 34px;
    text-decoration: none;
    color: black;
    font-family: 'WorkSans';
}

h1 {
    font-size: 84px;
    font-family: 'Bodoni';
    text-transform: uppercase;
    margin-top: 118px;
}