@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk&display=swap');

:root {
    --background-color: #202020;
}

html, body {
    padding: 0;
    margin: 0;
}

body {
    text-align: center;
    color: white;
    background-color: var(--background-color);
    font-family: 'Space Grotesk', sans-serif;
}

img {
    user-select: none;
    -webkit-user-drag: none;
}

.notification {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 20px;
    background: linear-gradient(to bottom, white, rgba(0, 0, 0, 0));
}

.library-container {
    margin: auto;
    width: min(100vw, 900px);
    height: 100vh;
    display: grid;
    grid-template-rows: 1fr 10fr;
    background-color: var(--background-color);
}

.section-item  {

}

.title-container {
    margin: auto;
    width: fit-content;
    height: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

#icon-button {
    padding: 0;
    margin: 0;
    width: 70px;
    height: 70px;
    background: none;
    border: none;
}

#icon {
    height: 70px;
    aspect-ratio: 1 / 1;
    align-self: center;
    border-radius: 10px;
}

#icon-button:focus {
    outline: none;
}

#icon:hover, #icon-button:focus > #icon {
    outline: solid white 2px;
}

#title {

}

.shelf-container {
    padding: 10px;
    width: calc(100% - 20px);
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    gap: 20px;
    overflow-y: auto;
}

.shelf-item {

}

.app-container {
    margin: 0;
    padding: 10px;
    padding-inline: 20px !important;
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    background-color: #404040;
    border: none;
    border-radius: 10px;
    user-select: none;
}

.app-container:hover, .app-container:focus {
    outline: solid white 2px;
}

.app-title {
    margin: 0;
    padding: 0;
    color: white;
    letter-spacing: 1px;
    font-size: 22px;
}

.app-image {
    height: 100px;
    border-radius: 10px;
}

#copyright {
    position: fixed;
    padding: 5px;
    margin: 10px;
    right: 0;
    bottom: 0;
    color: white;
    background-color: black;
    border-radius: 10px;
    opacity: 90%;
    cursor: pointer;
}