body {
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    background-color: #101020;
}

.glow-button {
    text-align: center;
    color: grey;
    font-size: 3rem;
    border: 5px solid grey;
    border-radius: 0.25em;
    display: inline-flex;
    padding: 1rem;
    transition: all 0.3s;
    align-items: center;
    justify-content: center;
}

.glow-button:hover {
    border-color: yellow;
    color: white;
    box-shadow: 0px 0.5em 0.5em -0.4em yellow;
    transform: translateY(-0.25em);
    cursor: pointer;
}

#container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

#container div {
    width: 200px;
    height: 200px;
    flex-grow: 1;
}

.clickable {
    cursor: pointer;
}