* {
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: #666;
    font-family: monospace;
    cursor: default;
}

*::selection {
    background-color: #ffecb3;
}

body {
    overflow: hidden;
}

#app {
    opacity: 0;
    position: relative;
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: honeydew;
    transition: 0.5s linear opacity;
}

#title-cont {
    height: 100px;
    box-shadow: #4242421a 0px 0px 20px;
}

#header-cont {
    padding: 30px 40px;
    box-sizing: border-box;
    margin: 0 auto;
    width: 61.8%;
}

#main-header {
    color: black;
    font-weight: bold;
    font-size: 22px;
    position: relative;
    bottom: 10px;
}

#sub-header {
    font-style: italic;
    position: relative;
    bottom: 4px;
}

#list-cont {
    height: calc(100% - 100px);
    overflow: auto;
}

.proj-cont {
    border-radius: 20px;
    padding: 30px 40px;
    box-sizing: border-box;
    margin: 20px auto 20px;
    backdrop-filter: brightness(0.97) grayscale(0.1);
    width: 61.8%;
}

.proj-title {
    color: black;
    cursor: pointer;
}

.proj-desc {
    margin-top: 8px;
}

div::-webkit-scrollbar {
    background-color: transparent;
    width: 5px;
}

div::-webkit-scrollbar-thumb {
    background-color: #666;
}
