/* Landing */
section.display.landing {
    background-image: url("https://assets.hermes-space.com/images/background_images/main.png");
    background-position: center center;
}

/* Projects */
section.display#projects {
    padding: 0;
}

#projects_latest {
    padding: 20px;
    height: 70px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background-color: var(--color-black-0);
}

#arrow_down {
    width: 50px;
    height: 50px;
    background-color: var(--color-white-0);
    clip-path: polygon(0% 25%, 25% 25%, 50% 50%, 75% 25%, 100% 25%, 50% 75%);
}

#projects_carousel {
    display: flex;
    flex-direction: row;

    width: fit-content;

    transition-duration: 1s;
    transition-timing-function: linear;
}

#projects_carousel>div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    height: calc(100vh - 70px - 2 * 20px);
    width: 100vw;

    padding: 20px;
    box-sizing: border-box;
}

#projects_carousel>div>p {
    flex: 2;
}

#projects_carousel>#stab {
    background-image: url("https://assets.hermes-space.com/images/projects/stab/cover.jpg");
    background-position: center center;
}

#projects_carousel>#hlx {
    background-image: url("https://assets.hermes-space.com/images/projects/hlx/cover.jpg");
    background-position: center -120px;
    background-size: cover;
}

#projects_carousel>div>hr {
    width: 100%;
    margin: 5px 0 0 0;
    border-top: 2px solid var(--color-white-0);
    align-self: center;

    transition-duration: 5s;
    transition-timing-function: linear;
}

/* Shop */
section.display#shop {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background-image: url("https://assets.hermes-space.com/images/background_images/shop.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

section.display#shop>h2 {
    flex: 2;
}

section.display#shop>p {
    text-align: right;
}

/* Follow us */
section.display#followus {
    display: flex;
    flex-direction: column;

    background-image: url("https://assets.hermes-space.com/images/background_images/followus.jpg");
    background-position: center center;
}

#followus_links_list {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;

    flex: 2;
}

#followus_links_list>div {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;

    width: 150px;
    padding: 10px;
    border-radius: 10px;

    cursor: default;

    transition-duration: 200ms;
}


#followus_links_list>div:hover {
    background-color: var(--color-white-0);
}

#followus_links_list>div:hover span {
    color: var(--color-black-0);
}

#followus_links_list>div>img {
    width: 40px;
    height: auto;
}

#followus_links_list>div>span {
    color: var(--color-white-0);
}