html, body {
    height: 100hv;
    background-color: #FEBC58;
}

.container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    -ms-align-items: center;
    align-items: center;
    text-align: center;
    background-color: #FEBC58;
}

.random-beer {
    margin-top: 150px;
    color: white;
    font-size: 30px;
    font-family: Arial, Helvetica, sans-serif;
}

.description {
    max-width: 600px;
    color: #f7ecb7;
    font-family: Arial, Helvetica, sans-serif;
}

.beer-button {
    display: inline-flex;
    border-style: none;
    background-color: #FEBC58;
}

.beer-button a {
    display: inline-block;
    text-decoration: none;
    background-color: #febc58;
    box-shadow: -8px -8px 12px 0 rgba(0, 0, 0, 0.3),
    12px 12px 16px rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.beer-button a:hover {
    box-shadow: inset 6px 6px 10px 0 rgba(0, 0, 0, 0.2),
    inset -6px -6px 10px 0 rgba(255, 255, 255, 0.5);
}

.beer-button .fab {
    padding-left: 3px;
}