* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    font-family: sans-serif;
}

body {
    width: 100vw;
    height: 100vh;
    background-image: url('/assets/img/wallpaper.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 32px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
}

.navLeft {
    display: flex;
    flex-direction: row;
}

.navLinks {
    display: flex;
    flex-direction: row;
}

.navLinks p {
    margin: 0px 10px;
    font-size: 12px;
    color: white;
}

.navLeft svg {
    margin: 0px 32px;
}

.navRight {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.navRight svg {
    margin: 0px 8px;
}

.navRight p {
    margin: 0px 24px 0px 8px;
    font-size: 12px;
    color: white;
}

.appTray {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    height: 64px;
    width: max-content;
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    padding: 0px 12px;
}

.appTray img {
    width: 48px;
    margin: 0px 4px;
    transition: 500ms ease-out;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.25));
    -webkit-filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.25));
}

.appTray img:hover {
    transform: translateY(-10px);
    cursor: pointer;
    transition: 250ms ease-out;
}

.separater {
    display: inline-block;
    height: 42px;
    width: 2px;
    border-radius: 50px;
    background-color: rgba(0, 0, 0, 0.25);
    margin: 0px 10px;
}

.finderWindow {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    transition: 250ms ease;
    opacity: 0;
    pointer-events: none;
}

.searchBar {
    background-color: rgba(255, 255, 255, 0.25);
    width: 60%;
    height: 32px;
    border-radius: 20px;
    padding: 20px;
    font-size: 20px;
    color: lightgray;
    border: none;
}

.searchBar::placeholder {
    color: lightgray;
}