@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Roboto&display=swap');

* {
    font-family: 'Lato', 'Roboto', sans-serif;
}

#header-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #4B296B;
    color: #DAD2D8;
}

#header-container > p {
    padding: 0px;
    font-size: large;
}

ul {
    list-style-type: none;
    display: flex;
    margin: 0px;
    padding: 0px;
}

li {
    padding-right: 10px;
}

a {
    text-decoration: none;
    color: #DAD2D8;
    font-size: large;
}

a:hover {
    font-weight: bold;
}

#header-logo {
    padding: 20px 0px;
}

#full-main {
    display: flex;
    flex-direction: column;
}

#main-content {
    display: flex;
    background-color: #DAD2D8;
    padding: 20px 0px;
}

h1 {
    margin: 0px 50px;
}

#main-story > p {
    margin: 10px 50px;
}

#doe-calculator {
    min-width: 30%;
}

#calc-label {
    font-size: x-large;
    text-align: center;
    margin: 0px;
}

#sliders {
    display: flex;
    flex-direction: column;
}

.calc-type-slider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.calc-type-label {
    padding: 5px;
    max-width: 70px;
    font-size: small;
}

form {
    display: table;
}

.form-input {
    display: table-row;
}

label {
    display: table-cell;
    font-size: small;
}

input {
    display: table-cell;
    margin-left: 5px;
}

#calc-button-container {
    display: flex;
    justify-content: center;
    padding: 10px 0px 0px;
}

#calc-button {
    background-color: #FE9920;
    border-radius: 4px;
    border-style: none;
    padding: 7px 12px;
    font-size: medium;
}

#calc-result {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FE9920;
    min-height: 35px;
    font-weight: 900;
    text-align: center;
    font-size: large;
}

#definitions {
    padding: 0px 50px;
    background-color: #DAD2D8
}

#definitions > p {
    font-size: small;
}

#footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4B296B;
    color: #DAD2D8;
    min-height: 30px;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 18px;
}
  
/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
  
/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #B9A44C;
    -webkit-transition: .4s;
    transition: .4s;
}
  
.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}
  
input:checked + .slider {
    background-color: #2D3047;
}
  
input:focus + .slider {
    box-shadow: 0 0 1px #2D3047;
}
  
input:checked + .slider:before {
    -webkit-transform: translateX(22px);
    -ms-transform: translateX(22px);
    transform: translateX(22px);
}
  
/* Rounded sliders */
.slider.round {
    border-radius: 18px;
}
  
.slider.round:before {
    border-radius: 50%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
  
  /* Firefox */
input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

/*color1 = #DAD2D8 - Timberwolf
color2 = #FE9920 - Princeton Orange
color3 = #B9A44C - Satin Sheen Gold
color4 = #2D3047 - Space Cadet
color5 = #4B296B - Tekhelet*/