@import url('../fonts/fonts.css');

body {
    margin: 0;
}

h1 {
    font-family: 'Playfair';
    text-transform: uppercase;
    font-size: 48px;
    letter-spacing: 30px;
    text-align: center;
}

main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
}

ul {
    list-style: none;
    padding-left: 0;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    gap: 24px;
}

span {
    display: block;
    font-family: 'LeagueSpartan';
    font-size: 34px;
    text-align: center;
    margin-top: 24px;
}

a {
    color: black;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}