body {
    margin: 0px;
    background-color: #272727;
    color: white;
    font-size: 14px;
}

li {
    list-style-type: disc !important;
}

.project-container:nth-child(2n),
.header,
.footer {
    background-color: #d33847;
}

.header {
    padding: 70px 10vw;
}

.link {
    color: white;
    text-decoration: underline;
}

.footer {
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10vw;
}

.footer-logo {
    height: 40px;
    width: 40px;
    background-image: url(../assets/logo.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position-y: center;
}

.seperator-line {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.25);
}

.project-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 70px 10vw;
}

.project-container:nth-child(2n) {
    direction: rtl;
}

.project-container>* {
    direction: ltr;
}

@media (max-width: 800px) {
    .project-container {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 20px;
        padding: 20px 10vw;
        direction: ltr;
    }
}

::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

.project-image {
    border-radius: 5px;
    height: 300px;
    width: 100%;
    object-fit: cover;
    cursor: pointer;
}

.fullscreen-image-container .project-image {
    width: auto;
    height: auto;
    max-width: calc(100vw - 20px);
    margin: auto;
    object-fit: unset;
    z-index: 99;
}

.fullscreen-image-container {
    background: rgba(0, 0, 0, 0.8);
    height: 100vh;
    width: 100vw;
    position: fixed;
    left: 0px;
    top: 0px;
    overflow: scroll;
    padding: 10px;
    text-align: center;
    display: grid;
    align-items: center;
    z-index: 99;
}

.logo {
    height: 50px;
    background-image: url(../assets/logo.png);
    background-repeat: no-repeat;
    background-size: contain;
}