body {
    background-color: black;
    margin: 0 !important;
    overflow: hidden;
    cursor: none;
}

.page-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    opacity: 0.7;
}

.page-background * {
    height: 100%;
    width: 100%;
    object-fit: cover;
    min-height: 0;
    overflow: hidden;
}

.page-content {
    position: relative;
    z-index: 1;
    height: 100vh;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: repeat(3, minmax(0, 1fr));
}

.content-title {
    grid-row: 1;
    width: 100%; 
    text-align: center; 
}

.navigation-buttons-container {
    grid-row: 2;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-left: 10%;
    margin-right: 10%;
}

.navigation-buttons-container > * {
    position: relative;
    aspect-ratio: 9/5;
    cursor: pointer;
}

.navigation-button-wrapper > img {
    border-radius: 20px;
    border: 2px solid #FFD5FF;
    box-shadow: 0 0 10px #FFD5FF;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.bottom-decor {
    grid-row: 3;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; 
    display: block;
    justify-self: center;
    align-self: center;
}

.button-title-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: auto;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.button-title-wrapper img {
    height: 100px;
    margin: 0 10px;
}