body {
    /*centers the whole script code into the middle of window*/
    margin: 10px;
    display: flex;
    justify-content: center;
    background-color: darkblue;
}

.planetNames {
    font-size: 16px;
    margin-top: 5px;
    color: #f9ed69;
}

.advancedText {
    font-size: 20px;
    color: #f08a5d;
    margin-right: 15px;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
}

.Planets {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.planet {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.ImgAndText {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 15px;
    margin-right: 30px;
}

.sliders {
    display: flex;
}

.Advanced {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fluency {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.highestFluency {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.orbit {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.zero {
    margin-bottom: 0px;
    display: flex;
    justify-content: center;
    position: relative;
}

#reset {
    color: #6a2c70;
    background-color: #f08a5d;
    font-size: 22px;
    border-color: #b83b5e;
    outline: #b83b5e;
}

.one {
    /*This class includes the switch
    This makes centers it*/
    margin-bottom: 0px;
    display: flex;
    justify-content: center;
    position: relative;
}

#switch {
    color: #6a2c70;
    background-color: #f08a5d;
    font-size: 22px;
    margin-bottom: 5px;
    border-color: #b83b5e;
    outline: #b83b5e;
}

.two {
    /*This class includes the delay slider and the text
    This makes the text centered*/
    margin-top: 5px;
    display: flex;
    justify-content: center;
    position: relative;
}


/*----------------------------------FBI warning! The following content contains ctrl+c & ctrl+v----------------------------------*/


/*The switch*/

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: #b83b5e;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #f9ed69;
}

input:focus+.slider {
    box-shadow: 0 0 1px #f9ed69;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}