::-webkit-scrollbar {
    display: none;
}
html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
body {
    background-color: #211B1F;
    margin: 0px;
}
a {
    color: inherit;
}
button {
    border: none;
    padding: none;
    margin: none;
}
#nav {
    background-color: #211B1F;
    color: #FEFDFD;
    height: 50px;
    width: 100vw;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#header {
    width: calc(100vw - 40px);
    height: 200px;
    margin: 20px;
    margin-top: 0px;
}
#header img {
    width: calc(100vw - 40px);
    height: 200px;
}
#foreground {
    background-color: #FEFDFD;
    width: calc(100vw - 40px);
    height: calc(100vh - 290px);
    margin: 20px;
    margin-top: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}
#featured {
    color: #211B1F;
    position: absolute;
    top: 0;
    left: 0;
    margin: 20px;
    margin-bottom: 0px;
    height: calc(3.25vw);
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
}
#location {
    color: #8F8C8E;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    position: absolute;
    top: 0;
    right: 0;
    margin: 20px;
    margin-bottom: 0px;
    height: calc(100vw * 0.0325);
}
.project {
    margin: 20px;
    width: calc((100% - 60px)/4);
    height: calc(100% - 100px);
}
.thumbnail {
    background-color: #EDEDED;
    width: 100%;
    height: calc(100% - 45px);
    transition: all 0.5s ease;
}
.thumbnail img {
    width: 100%;
}
.thumbnail:hover {
    opacity: 0.33;
}
.details {
    width: 100%;
    height: 45px;
    position: relative;
}
.date {
    position: absolute;
    top: 0;
    left: 0;
    color: #8F8C8E;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-size: 10px;
    font-weight: 500;
    padding-top: 10px;
}
.name {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #211B1F;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -1px;
}
.projecttype {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #211B1F;
    border-radius: 5px;
    color: #FEFDFD;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-size: 10px;
    padding: 10px;
}

@media screen and (max-width: 900px) {
    #foreground {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        height: 2790px;
    }
    .project {
        margin: 20px;
        margin-bottom: 0px;
        margin-top: 40px;
        width: calc((100% - 40px));
        height: auto;
    }
    .thumbnail {
        height: 600px;
    }
    .thumbnail img {
        width: auto;
        height: 100%;
    }
}