html, body {
    margin: 0;
    height: 100%;
}

body {
    background-color: rgb(37, 38, 42);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    vertical-align: center;
    justify-content: center;
}

div.content {
    font-family: 'Saira Extra Condensed', sans-serif;
    color: white;
    text-align: center;
    font-size: 14pt;
    display: flex;
    flex-direction: column;
    align-items: center;
    vertical-align: center;
    justify-content: center;
}

form.search {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: 1px solid green;
    width: 400px;
    background-color: rgb(30, 30, 30);  
    border: 1px solid rgb(50, 50, 50);
    border-radius: 32px;
    padding: 8px;
    box-shadow: inset 0 0 3px 4px rgba(0, 0 ,0, 0.2);
    margin-bottom: 24px;
}

form.search img {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
}

form.search input {
    display: block;
    background-color: transparent;
    border: none;
    color: white;
    font-family: sans-serif;
    font-size: 12pt;
    text-align: center;
    margin-right: 32px;
    width: 100%;
}

input:focus {
    outline: none !important;
}

div.container {
    position: relative;
    display: block;
    margin: 16px;
    padding: 16px;
    background-color: rgb(30, 30, 30);
    border: 1px solid rgb(50, 50, 50);
    border-radius: 8px;
    width: 100%;
    box-shadow: inset 0 0 3px 4px rgba(0, 0 ,0, 0.2);
}

div.container div.title {
    color: rgb(150, 150, 150);
    font-size: 11pt;
    position: absolute;
    z-index: 100;
    top: -12px;
    left: 50%;
    transform: translate(-50%, 0);
    padding: 0 8px;
    background-color: rgb(30, 30, 30);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

div.container div.title:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    content: "";
    height: 45%;
    border-left: 1px solid rgb(50, 50, 50);
    border-right: 1px solid rgb(50, 50, 50);
    border-top: 1px solid rgb(50, 50, 50);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    box-shadow: inset 0 3px 3px 1px rgba(0, 0 ,0, 0.2);
}

div.apps {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    row-gap: 4px;
    column-gap: 4px;
}​

a, a:visited {
    color: rgb(200, 200, 200);
    text-decoration: none;
}

a.app, a.app:visited {
    color: rgb(200, 200, 200);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    width: 96px;
    height: 96px;}

a.app img {
    display: block;
    margin: 0 auto;
    width: 64px;
    height: 64px;
    background: transparent;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
}

