* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Helvetica';
}

body {
    background-color: rgba(0, 0, 0, 1);
    cursor: none;
}

.custom-cursor {
    display: none;
    position: absolute;
    pointer-events: none;
    mix-blend-mode: difference;
    z-index: 9999;
}

.custom-cursor span {
    white-space: nowrap;
    display: block;
    font-family: Helvetica;
    font-weight: 600;
    font-size: 14px;
    color: white;
    position: relative;
    left: -25%;
    top: -25%;
    transform: translate(-25%, -25%);
}

.background-clip {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: soft-light;
    z-index: 2;
}

.page {
    position: relative;
    width: 100%;
    height: 100vh;
}

.navbar {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 76px;
}

.navbar-content {
    display: flex;
    font-size: medium;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 3.23%;
    padding-right: 3.23%;
    color: rgba(255, 255, 255, 1);
}

.nav {
    z-index: 4;
    mix-blend-mode: difference;
}

.icon-container {
    display: inline-block;
    height: 1em;
    z-index: 4;
    mix-blend-mode: difference;
}

.icon-container svg {
    width: 100%;
    height: 100%;
    fill: rgba(255, 255, 255, 1);
}

.selectors {
    position: absolute;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    height: 100%;
    width: 100%;
    z-index: 3;
}

.flex-box {
    display: flex;
    flex: 1;
    width: 100%;
    justify-content: center;
    align-items: center;
    cursor: none;
}

.project-title {
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 4;
    padding-left: 3.23%;
    padding-bottom: 30px;
    mix-blend-mode: difference;
}

.project-title-text {
    display: flex;
    color: rgba(255, 255, 255, 1);
    font-size: 20px;
}


.hideCursor {
    opacity: 0;
    transition: opacity 0.5s;
}