html {
    text-align: center;
    background-color: #313131;
}

body {
    color: #ffffff;
    font-family: "Barlow Semi Condensed",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
    font-size: 18px;
    line-height: 32px;
    font-weight: 400;
    letter-spacing: 0px;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: #313131;
    padding-bottom: 20px;
}

#categories ul {
    cursor: pointer;
    height: 75px;
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    margin: 0 0 20px 0;
    padding: 0;
    background-color: #222520;
}

#categories ul li {
    display: flex;
    align-items: center;
    width: 100%;
}

#categories ul li.selected {
    background-color: #4a91d0;
}

#categories ul li a {
    font-size: 0.8em;
    flex: 1;
}


#rouletteButton {
    cursor: pointer;
    display: inline-block;
    background-image: url('images/mysterybeer.png');
    background-position: center;
    background-size: 80%;
    background-repeat: no-repeat;
    background-color: #bb2f16;
    text-align: center;
    border: 8px solid #222520;
    border-radius: 50%;
    width: 200px;
    height: 200px;
}

@keyframes spin {
    from {
        transform: rotateZ(0deg);
    }

    to {
        transform: rotateZ(1800deg);
    }
}

.spinning {
    animation: spin 2s ease-in-out;
}

#beerData {
    position: relative;
    top: 300px;
    padding: 30px;
    height: 100%;
}

#beerName {
    font-size: 50px;
    line-height: 70px;
    font-weight: 400;
    letter-spacing: -1px;
}

#beerImage {
    border-radius: 50%;
    height: 50px;
    width: 50px;
}

ul#beerPriceList {
    flex: 0 1 40px;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

ul#beerPriceList li {
    display: flex;
    justify-content: right;
}

ul#beerPriceList li span {
    text-align: right;
    display: inline-block;
    max-width: 200px;
}

ul#beerPriceList li span.beer-price {
    width: 65px;
}