html {
    height: 100%;
}
body {
    font-family: "Sora", sans-serif;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: url("../backgrounds/contact-background.svg") no-repeat center center;
    background-size: cover;
    pointer-events: none;
}

main {
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
}

.project {
    position: relative;
    border-radius: 12px;
    height: fit-content;
    width: 22rem;
    color: #000;

    padding: 1.5rem;
}

.project .project-bg-blur {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 3rem;
    box-sizing: border-box;
    backdrop-filter: blur(8px);
    filter: blur(15px);
    opacity: 0.8;
    z-index: 0;

    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent),
        linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    mask-composite: intersect; /* combine the two gradients */
}

#project-bg-blur-link-organizer {
    background-image: url("/illustrative-images/link-organizer.png");
}

#project-bg-blur-hjumenbet {
    background-image: url("/illustrative-images/hjumenbet.png");
}

.project .project-content {
    position: relative;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: saturate(100%) blur(8px);
    border-radius: 2.5rem;
    border: solid 0.13rem white;
    height: fit-content;
    padding: 1.3rem;
}

.project-image-cont {
    position: relative;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.636);
    border-radius: 1.5rem;
}

.project-image-cont-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    border-radius: 1.5rem;
}

.project-image-cont-img {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 1.5rem;
    display: block;
    z-index: 1;
}

.project-content-head-cont {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: fit-content;
    margin-top: 1rem;
}

.project-continue-btn {
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(64, 80, 230, 0.25);
    border: solid 0.15rem rgb(64, 80, 230);
    border-radius: 0.75rem;
    backdrop-filter: blur(3px);
    box-shadow: 0 0 1.5rem rgb(64, 80, 230);
}

.project-continue-btn-img {
    height: 60%;
    fill: rgb(64, 81, 230);
    stroke: rgb(64, 81, 230);
    width: 100%;
}

.project-title {
    margin: 0;
    color: rgba(64, 80, 230, 0.9);
}

.project-desc {
    margin: 0;
    color: rgb(90, 90, 90);
    text-align: justify;
}
