.space-container {
    user-select: none;
    background-image: url(../img/blackhole.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
    width: 100%;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.space-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.space-container h1 {
    font-size: 70px;
}

.space-btn {
    margin-top: 18px;
    display: flex;
    gap: 8px;
    user-select: none;
}

.space-btn a {
    text-decoration: none;
    font-size: 2.2rem;
    border-radius: 8px;
    padding: 12px;
    background-color: rgb(63, 0, 119);
    gap: 80px;
    transition: background-color 0.8s;
}

.space-btn a:hover {
    cursor: pointer;
    background-color: rgb(40, 0, 75);;
}

@media (max-width: 650px) {
    .space-container h1 {
        font-size: 40px;
   }
}

/* next */

.space-about {
    scroll-snap-type: mandatory;
    height: 105vh;
    width: 100%;
    min-height: 100vh;
    background-image: url(/cdn/img/se21.jpg); background-position: center; background-size: cover;
    background-attachment: fixed;
}