* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Helvetica';
}

body {
    background-color: rgba(0, 0, 0, 1);
}

.header {
    position: relative;
    width: 100%;
    height: 105vh;
}

.navbar {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    mix-blend-mode: difference;
}

.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);
}

.icon-container {
    display: inline-block;
    height: 1em;
}

.icon-container svg {
    width: 100%;
    height: 100%;
    fill: rgba(255, 255, 255, 1);
}

.header-content-box {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.header-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.spacer {
    display: block;
    height: 100px;
}

.content {
    display: flex;
    flex-direction: column;
}

.footer {
    display: block;
    text-align: center;
}

.next-case {
    text-decoration: none;
    white-space: nowrap;
    font-size: 30.5vb;
    font-weight: bold;
    line-height: 80%;
    text-indent: -2.25vb;
    color: rgba(255, 255, 255, 1);
}