body {

    width: 100vw;
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 0;
    margin: 0;
    background-color: white;
}


#works_container {
    margin-top: 2.9vw;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    background-color: transparent;


}

.work_container {
    margin-left: 30vw;
    margin-right: 30vw;
    position: relative;
    border: none;
    box-sizing: border-box;
    width: 40vw;
    height: 30vw;
    overflow: hidden;
    border: 0.2vw solid rgb(255, 255, 255);


}

.work_specs {

    position: absolute;
    margin-left: 1vw;
    max-width: 40vw;
    margin-right: 1vw;
    bottom: 0;
    visibility: hidden;


}

.worktitle {


    font-family: "rob_bold";
    color: rgb(255, 255, 255);
    font-size: 1.7vw;
    letter-spacing: -0.1vw;
    margin-bottom: 0;
}

.workspecs {

    color: white;
    font-family: "rob_thin";
    font-size: 1vw;
    letter-spacing: -0.07vw;
    margin-top: 0.1vw;

}


.work_container img {
    height: 30vw;
}

#yearcontainer {
    display: flex;
    justify-content: right;
    z-index: 101;
    position: fixed;
    width: 100vw;
    top: 5%;

}

#year {
    margin-right: 2%;
    width: fit-content;
    background-color: black;
    font-size: 2vw;
    font-family: 'rob_reg';
    color: white;
    text-align: right;
}

.marquee {
    width: 100%;
    overflow: hidden;
    background: #000000;
    color: #fff;
    padding: 5px 0;
    position: fixed;
    bottom: 0;
}

.marquee span {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: scroll 20s linear infinite;
    font-family: 'rob_reg';
    font-size: 2vh;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.close-btn {
    position: absolute;
    right: 0.5vh;
    top: 0.5vh;
    width: 2vh;
    height: 2vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    color: #fff;
    border: 1px solid white;
}

#spacerbottom {
    height: 5vw
}






/*.main_button {
    font-family: "rob_black_ital";
    border: 1px solid;
    border-radius: 100px;
    background-color: var(--white);
    margin-left: 0.5vw;
    display: inline-block;
    border-color: var(--darkgray);

}

.main_button_selected {

    font-family: "rob_black_ital";
    border: 1px solid;
    border-radius: 100px;
    background-color: var(--black);
    margin-left: 0.5vw;
    display: inline-block;
    border-color: var(--white);


}

.main_button_selected p {

    margin-left: 1vw;
    margin-right: 1vw;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.7vw;
    color: var(--white);
}

.main_button p {

    margin-left: 1vw;
    margin-right: 1vw;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.7vw;
    color: var(--darkgray);
}/*