.container {
    background: rgb(232, 232, 232);
    width: 32rem;
    margin: 1rem;
    border-radius: 32px;
    padding: 1rem;
}

.text {
    color: rgb(0, 0, 0, 0.5);
}

.title {
    font-weight: 500;
    font-size: 18px;
}

.box {
    box-shadow: 0px 0px 4px 0px rgb(0, 0, 0, 0.2);
    padding: 1rem;
    background: white;
    border-radius: 16px;
    text-decoration: none;
    flex-shrink: 1;
    flex-grow: 1;
    min-width: 8rem;
    -webkit-transition: all 0.3s;
}

.box:hover {
    opacity: 75%;
}

.box-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    width: 100%;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    height: 100vh;

    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}