body {
    margin: 0;
    background-color: black;
    overflow-y: scroll;
    overflow-x: hidden;
    color: #fafae1;
    font-family: "Space Grotesk", sans-serif;
}

h1 {
    text-align: center;
    padding-top: 3rem;
}

.info {
    padding: 2rem 12rem 2rem 12rem;
}

.controls {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 1px solid #f7f7b8; 
    width: 40%;
    padding: 1.5rem;
    margin: auto;
}

.orbitSelection {
    display: flex;
    gap: 1rem;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.adjustSpeed {
    display: flex;
    gap: 1rem;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.buttons {
    display: flex;
    gap: 1rem;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

select {
    padding: 0.25rem;
    background-color: #fafae1;
    border: 1px solid #f7f7b8; 
    width: 25%;
    cursor: pointer;
}

label {
    display: block;
}

button {
    padding: 0.4rem;
    background-color: #fafae1;
    border: 1px solid #f7f7b8; 
    width: 25%;
    cursor: pointer;
}

button:hover {
    background-color: #f3f69d;
}


canvas {
    display: block;
}

.mobile-block {
    display: none;
    position: fixed;
    inset: 0;
    background: black;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

/* Show on small screens */
@media (max-width: 900px) {
    canvas {
        display: none;
    }

    .mobile-block {
        display: flex;
    }
}