* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    font-family: sans-serif;
}

#background {
    background-image: url("Assets/Background--Scarlet-Tree-KDE.webp");
    background-size: cover;
    width: 100%;
    height: 100vh;
    display: inline-block;
    filter: blur(10px) brightness(.45);
    position: fixed;
    left: 0;
    right: 0;
    z-index: 0;
}

#content {
    padding-top: 8px;
    padding-bottom: 26px;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 10000000;
    width: 100%;
    text-align: center;
    display: block;
    height: 100%;
}

#content header {
    font-size: 12px;
    height: 100%;
}

#content header a {
    color: rgb(139, 139, 139);
    text-decoration: none;
}

#content header a:hover {
    color: rgb(175, 175, 175);
}

#middle {
    position: fixed;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

#middle main-title {
    display: block;
    color: rgb(209, 209, 209);
    font-size: 45px;
}

#middle title-footer {
    display: block;
    color: rgb(180, 180, 180);
    font-size: 18px;
    margin-bottom: 40px;
}

#buttons a {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.24);
    border: 4px solid rgba(0, 0, 0, 0.336);
    font-size: 18px;
    border-radius: 15px;
    padding: 8px;
    width: 125px;
    color: rgba(209, 209, 209, .65);
    text-decoration: none;
    margin: 6px 14px;
    transition: 350ms;
}

#buttons a:hover {
    width: 150px;
    padding: 12.5px;
    background-color: rgba(0, 0, 0, 0.39);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.644);
}

.contact-button {
    width: 90% !important;
}

#content bottom {
    font-size: 12px;
    color: rgb(139, 139, 139);
}

#projects {
    display: inline-block;
    border: 4px solid rgba(0, 0, 0, 0.37);
    border-radius: 15px;
    width: 50%;
    height: 50vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #00000079 #00000000;
}

@media (max-width: 600px) {
    #projects {
        width: 70%;
        height: 65vh;
    }
    #middle {
        padding-top: 35px;
    }
}


#projects li {
    list-style-type: none;
    /* width: 100%; */
}

#projects li a {
    display: block;
    color: rgb(209, 209, 209);
    text-decoration: none;
    justify-content: space-between;
    flex-direction: column;
    padding: 7px 20px;
    align-items: left;
    background-color: rgba(0, 0, 0, 0.2);
    margin: 12px;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: 350ms;
}

#projects li a:hover {
    padding: 7px 30px;
    border: 2px solid rgba(0, 0, 0, 0.281);
    background-color: rgba(0, 0, 0, 0.301);
}

#projects li a .project-head {
    color: rgb(209, 209, 209);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0;
    margin-bottom: 0;
}

#projects li a .project-desc {
    display: block;
    color: rgb(180, 180, 180);
    font-size: 13px;
    padding-bottom: 7px;
    text-align: left;
}

.status {
    display: flex;
    align-items: center;
}

.status span {
    font-size: 30px;
}

.progress {
    color: orange;
}

.finished {
    color: green;
}

.abandoned {
    color: red;
}
