.home-page {
    background: none;
}

.background {
    background: rgb(133,63,140);
    background: linear-gradient(0deg, rgba(133,63,140,1) 0%, rgba(69,57,105,1) 100%);
    min-height: 100vh;
}

.core-position {
    grid-column: 2;
    grid-row: 1;
    z-index: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
}

.core {
    width: 70%;
    animation-name: spin;
    animation-duration: 10000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear; 
    /* transform: rotate(3deg); */
    /* transform: rotate(0.3rad);/ */
    /* transform: rotate(3grad); */ 
    /* transform: rotate(.03turn);  */
}

.options {
    grid-column: 2;
    grid-row: 1;
    z-index: 20;

}

.the-options {
    height: 100%;
    justify-content: space-evenly;
    align-items: end;
}


.options-spacer {
    width: 15%;
    padding: 15px;
    margin-bottom: 30px;
}


.philosophy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 15%;
    padding: 15px;
    margin-bottom: 30px;
}


.ar-styles {
    justify-content: center;
    gap: 5%;
}

@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}


@media only screen and (max-width:900px){
	/* For mobile phones: */

    .core-position {
        display: none;
    }

    .options-spacer {
        display: none;
    }

}