h3::before {
    content: "Compatible with: ";
}

div.keyword {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 5px;
    margin: 8px;
    padding: 8px;
    box-shadow: rgba(0, 0, 0, 0.315) 0 2px 2px;
}

div.keyword * {
    color: rgba(0, 0, 0, 0.815);
}

div.keyword h2 {
    border-radius: 5px;
    color: white;
}

div.keyword img {
    margin-top: 8px;
}

button.collapsible {
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-flow: row nowrap;
    justify-content: baseline;
    align-items: center;
    font-size: 1.5em;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    background: #525252;
    color: white;
    padding: 8px 16px;
    margin: 0;
    box-shadow: rgba(0, 0, 0, 0.315) 0 2px 2px;
}

button.collapsible:hover {
    background: #414141;
}

button.collapsible img {
    width: 38px;
    height: 38px;
    margin-left:8px;
}

div.content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.menu {
    color: white;
}