#black-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    z-index: 1000;
}

.layers {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.layers img {
    width: 90%;
    height: 90%;
    position: absolute;
    object-fit: cover;
}

.fade img {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    z-index: 10;
}

.menu-flexbox {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    justify-content: left;
    align-items: center;
    z-index: 11;
}

.buttons-box {
    position: absolute;
    left: 10rem;
    width: 20rem;
    height: 20rem;
    z-index: 20;
}

.buttons-box h1 {
    font-size: 5rem;
    font-family: font1;
    color: rgba(255, 255, 255, 0.863);
}

.buttons-box h2 {
    font-family: font2;
    color: rgba(218, 218, 218, 0.671);
    padding-bottom: 2rem;
    font-size: 1rem;
}

.buttons {
    position: relative;
    transition: 0.3s;
    z-index: 30;
}

.buttons:hover {
    background-color: rgba(255, 255, 255, 0.308);
}

.buttons button {
    font-size: 2rem;
    color: rgb(190, 190, 190);
    font-family: font2;
    background-color: transparent;
    border: none;
    width: 100%;
    text-align: left;
    cursor: none;
}

.text-flexbox {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: end;
    z-index: 10;
}

.text {
    position: absolute;
    padding-bottom: 4rem;
    text-align: center;
}

.text h1 {
    color: rgba(255, 255, 255, 0.521);
    font-family: sans-serif;
    font-size: 1rem;
}

.text h2 {
    color: rgba(255, 255, 255, 0.363);
    font-family: sans-serif;
    font-size: 0.7rem;
}

.cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999;
    transition: all 0.2s ease-out;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.cursor.active {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.8);
    border-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

* {
    cursor: none;
}