* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Yusei Magic", sans-serif;
}

/*
 * GLOBAL DECLARATIONS
*/

li {
    list-style: none;
}

a {
    text-decoration: none;
}



.container {
    background-color: purple;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 1em;
}

.box-1,
.box-2,
.box-3 {
    border: 1px solid white;
    border-radius: 10px;
}

.box-1 {
    width: 22%;
    padding: 2em;
    display: flex;
    flex-direction: column;
    gap: 2em;
    height: 100%;
}

nav ul {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.box-2 {
    width: 35%;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: flex-end;
    padding: 2.5em;
}

.box-3 {
    width: 35%;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    gap: 1em;
    padding: 2em;
    color: #FFFFFF;
}



.box-1 h1 {
    font-size: 3rem;
    color: #FFFFFF;
    cursor: pointer;
}

.box h1:hover {
    background: -webkit-linear-gradient(#eee, #b92bc3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.box-1 a {
    color: #D3D3D3;
    font-size: 2rem;
}



.canvas-cont {
    min-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

canvas {
    background: radial-gradient(circle at 40% 40%, rgba(139, 61, 255, 0.1), transparent);
    max-width: 100%;
    height: 100%;
}

.box-2 a {
    color: #FFFFFF;
    font-size: 1.5rem;
    border: 1px solid #FFFFFF;
    width: 48%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    height: 100px;
}

.cast {
    width: 100%;
    display: flex;
    gap: .5em;
    justify-content: center;
    align-items: flex-end;
    height: 10%;
}

.colors {
    border: 1px solid #FFFFFF;
    border-radius: 10px;
    padding: 1em;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.colors h3 {
    color: #D3D3D3;
}

.color-row {
    display: flex;
    gap: 1em;
}

input[type="color"] {
    border: 1px solid #D3D3D3;
    border-radius: 10px;
    padding: .15em;
    outline: none;
    height: 3rem;
    width: 6rem;
}

.other {
    border: 1px solid #FFFFFF;
    border-radius: 10px;
    height: 250px;
    padding: 2em;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.physics {
    height: auto;
}

.other label {
    display: block;
    padding-bottom: .5em;
    font-size: 1em;
}

input[type="range"] {
    width: 90%;
    height: 10px;
}

input[type="checkbox"]~label {
    display: inline-block;
    padding-left: .25em;
}