body {
    margin: 0;
    font-family: sans-serif;
    background-image: radial-gradient(white, gray);
    background-size: 100vw 100vh;
    text-align: center;
    cursor: default;
    user-select: none;
}

#searchbar {
    width: 80%;
    background-color: white;
    height: 50px;
    margin: auto;
    margin-top: 40px;
    transition: 0.5s;
}

#searchbar input:focus {
    width: 90%;
}

nav {
    height: 50px;
    background-image: linear-gradient(gray, black);
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: white;
}

#searchbar input {
    height: 100%;
    width: 100%;
    transition: 0.5s;
}

input {
    border: none;
    outline: none;
}

.active {
    border-top: 2px solid rgb(0, 0, 211);
    padding: 5px;
}

#appShortcuts {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 500px) {
#appShortcuts {
    display: none;
}
}

.app {
    height: 200px;
    background-color: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 200px;
    margin: 15px;
    transition: 0.5s;
}

.app img {
    height: 100px;
}

.app:hover {
    background-color: gray;
    border-radius: 15px;
    color: white;
    font-weight: bold;
}

button {
    border: 2px outset gray;
    background-color: white;
    padding: 3px;
}

button:active {
    border: 2px inset gray;
    background-color: lightgray;
}

.overlay {
    background-color: lightgray;
    position: fixed;
    height: 100%;
    width: 100%;
}