* {
    color: white;
    background-color: black;
}

header {
    text-align: center;
}

section {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#buttons figure {
    border: 0.5rem solid white;
    border-radius: 10%;
    transition: all ease 0.2s;
}

#buttons figure:hover {
    transform: scale(1.1);
    filter:brightness(1.1);
}

#buttons figure:active {
    transform: scale(0.9);
    filter:brightness(0.9);
}

figure {
    width: 10rem;
    padding: 0.5rem;
}

figcaption {
    text-align: center;
}

img {
    width: 100%;
    border-radius: 10%;
}