.content {
    position: fixed;
    top: 50%;
    padding: 2rem;
    z-index: 4;
}

.homepage-button {
    background-color: #ffffff00;
    transition: background-color 0.2s;

    border-color: #ffffff;
    border-radius: 65px;
    border-style: solid;
    border-width: 2px;

    text-align: center;

    width: auto;
    max-width: 75%;
    padding-left: 40px;
    padding-right: 40px;
    height: 55px;
    cursor: default;
}
.homepage-button:hover {
    cursor: pointer;
    background-color: #00000073;
    border-color: #ffffff;
}



.slide-content {
    position: relative;
    width: auto;
    height: 100vh;
    z-index: 4;
    top: 0;
    padding-left: 15%;
    padding-right: 15%;
}


.image-container {
    position: absolute;
    width: 100%;
    height: 100%;
}


.subimage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    will-change: clip-path;
    clip-path: inset(0 0 0 0);
    transition: clip-path 0.1s;
    z-index: -1;
}





.image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    will-change: clip-path;
    clip-path: inset(0 0 0 0);
    z-index: -1;
}
.image:nth-of-type(1) {
    z-index: 4;
}
.image:nth-of-type(2) {
    z-index: 3;
}
.image:nth-of-type(3) {
    z-index: 2;
}
.image:nth-of-type(4) {
    z-index: 1;
}