body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 1rem;
}

#search {
    box-sizing: border-box;
    font-size: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0.75rem;
    width: 100%;
    max-width: 400px;
}

div.icons {
    display: flex;
    flex-wrap: wrap;
}

div.icon {
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 128px;
}

div.icon img {
    cursor: pointer;
    height: 64px;
    margin-bottom: 2em;
    width: 64px;
}

div.icon span {
    margin-bottom: 2em;
    text-align: center;
}

#toast {
    background: #333;
    border-radius: 4px;
    bottom: 2rem;
    color: #fff;
    left: 50%;
    opacity: 0;
    padding: 0.5rem 1.25rem;
    pointer-events: none;
    position: fixed;
    transform: translateX(-50%);
    transition: opacity 0.3s;
}

#toast.visible {
    opacity: 1;
}
