@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@200;400;500;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;500;700&display=swap);
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    scrollbar-width: none;
}

::-webkit-scrollbar {
    width: 0px;
    background: transparent;
} 

/* Optional: show position indicator in red */
::-webkit-scrollbar-thumb {
    background: rgba(240, 240, 240, 0);
    width: 0px;
}



::-moz-scrollbar {
  display: none;
}

html {
    scrollbar-width: none;
    scroll-behavior: smooth;
    height: 100vh;
    width: 100vw;
    overflow: scroll;
    overflow-x: hidden;
    overflow-y: hidden;
    scrollbar-width: none;
}

body {
    height: 100vh;
    width: 100vw;
    /* font-family: 'Poppins', sans-serif; */
    font-family: "poppins", sans-serif;
    /* background-color: #f5f5f5; */
    /* background: linear-gradient(to bottom, rgb(10, 10, 10), rgb(12, 12, 12)); */
    /* background-image: linear-gradient(rgba(35, 31, 30, 1), rgba(35, 31, 30, 0.8), rgba(0, 0, 0, 0.7)), url('../img/bg.png'); */
    background-image: url(../images/bg.png);
    background-repeat: no-repeat;
    background-size: auto;
    /* background-color: rgb(0, 0, 0); */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

#header {
    /*! position: fixed; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 10%;
    /* background-color: rgb(242, 241, 241); */
    background: linear-gradient(to bottom, rgba(2, 2, 2, 0.2), rgba(50, 47, 47, 0.2));
    color: #fff;
    padding: 10px 0;
    text-align: center;
    /* border-bottom: 1px solid #333; */
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    width: 100%;
}

#header #logo {
    margin-left: 50px;
    display: flex;
    align-items: center;
    /* width: 50px; */
    height: 90%;
    /* margin-right: 10px; */
    margin-left: 99%;
    transform: translateX(-100%);
}

#header #logo img {
    height: 100%;
    width: auto;
}

#header #logo h1 {
    font-size: 2rem;
    letter-spacing: -1px;
    font-weight: 400;
    /* margin-right: 96px; */
    font-size: 3rem;
    color: rgb(240, 240, 240);
}

#content {
    height: 90%;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    overflow: scroll;
}

#content hr{
    border: none;
    height: 1px;
    width: 98%;
    background: rgba(240, 240, 240, 0.5);
    margin: 2rem 0;
}

section.apps {
    width: 100%;
    margin: 0 auto;
    margin-top: 2rem;
    /* background-color: rgba(50, 47, 47, 0.718); */
    border-radius: 10px;
}

section.apps .sectionTitle {
    font-size: 2rem;
    line-height: 2.5rem;
    font-weight: 500;
    margin-left: 3rem;
    margin-top: 1rem;
    /* margin-bottom: 0.2rem; */
    /* text-decoration: underline; */
    color: rgb(240, 240, 240);
    font-weight: 200;
}

.apps-list {
    width: 100%;
    /* height: 95%; */
    /* margin-top: 5%; */
    /* display: grid;
    grid-template-columns: repeat(auto-fill, minmax(512px, 1fr)); */
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    /* justify-content: center; */
    /* gap: 20px; */
    align-items: center;
    overflow: scroll;
}

.apps-list h1 {
    color: rgb(240, 240, 240);
    font-size: 3rem;
    font-weight: 400;
    text-align: center;
    margin: 3rem;
}

.apps-list .app {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    /* height: 300px; */
    width: 320px;
    /* background-color: #ffffff27; */
    border-radius: 5px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    margin: 0.7rem;
    text-align: center;
}

.apps-list .app .app-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 180px;
    width: 320px;
    /* margin-left: 0.2rem; */
    /* width: 256px;
    height: 256px;
    min-width: 256px;
    min-height: 256px;
    max-width: 256px;
    max-height: 256px;
    border-radius: 50%;
    margin-bottom: 10px; */
}

.apps-list .app img {
    width: 98%;
    height: auto;
    margin: auto;
    opacity: 0.8;
    -webkit-filter: drop-shadow(1px 1px 0 rgba(71, 71, 71, 0.781))
                    drop-shadow(-1px 1px 0 rgba(71, 71, 71, 0.781))
                    drop-shadow(1px -1px 0 rgba(71, 71, 71, 0.781))
                    drop-shadow(-1px -1px 0 rgba(71, 71, 71, 0.781))
                    brightness(0.9);

    filter: drop-shadow(1px 1px 0 rgba(71, 71, 71, 0.781))
            drop-shadow(-1px 1px 0 rgba(71, 71, 71, 0.781))
            drop-shadow(1px -1px 0 rgba(71, 71, 71, 0.781))
            drop-shadow(-1px -1px 0 rgba(71, 71, 71, 0.781))
            brightness(0.9);

}

.apps-list .app .app-name {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 0.1rem;
    padding-bottom: 0.2rem;
    color: rgb(240, 240, 240);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    background-color: rgba(50, 47, 47, 0.473);
    /* position: absolute;
    bottom: 0rem;
    color: white; */
}

.apps-list .app .app-name p {
    /* margin-top: 1rem; */
    font-size: 1.8rem;
    line-height: 2rem;
    font-weight: 400;
    text-align: center;
}

/* .apps-list .app:hover,
.apps-list .app:focus {
    cursor: pointer;
    outline: 2px solid rgb(212, 211, 211);
    transform: scale(1.04);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: all 0.2s ease;
    background-color: rgba(206, 204, 204, 0.747);
} */


.apps-list .app:hover img,
.apps-list .app:focus img {
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 1;
    -webkit-filter: drop-shadow(2px 2px 0 rgb(240,240,240))
                    drop-shadow(-2px 2px 0 rgb(240,240,240))
                    drop-shadow(2px -2px 0 rgb(240,240,240))
                    drop-shadow(-2px -2px 0 rgb(240,240,240))
                    brightness(1);

    filter: drop-shadow(2px 2px 0 rgb(240,240,240))
            drop-shadow(-2px 2px 0 rgb(240,240,240))
            drop-shadow(2px -2px 0 rgb(240,240,240))
            drop-shadow(-2px -2px 0 rgb(240,240,240))
            brightness(1);
}
