body {
    font-family: 'Lato', sans-serif;
}

.content {
    width: 700px;
    margin: auto;
    height: 700px;
    padding: 10px;
    background-color: #efe4d5;
    /*box-shadow: 0px 0px 5px 5px rgb(98, 98, 98);*/
    border-radius: 20px;

}

button {
    border: none;
    font-family: inherit;
    font-size: inherit;
    background: none;
    cursor: pointer;
    padding: 10px 40px;
    display: inline-block;
    margin: 15px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    outline: none;
    position: relative;
    background: #fff;
    color: rgb(49, 49, 49);
    box-shadow: 0 6px #ccc;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
    border-radius: 5px;
}

input {
    float: right;
    text-align: right;
    width: 85%;
    opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
    -webkit-transition: .2s; /* 0.2 seconds transition on hover */
    transition: opacity .2s;
    margin: 1px;
}

  /* Mouse-over effects */
  input:hover {
    opacity: 1; /* Fully shown on mouse-over */
  }

button:hover {
    box-shadow: 0 4px #ccc;
    top: 2px;
}

button:active {
    box-shadow: 0 0 #ccc;
    top: 6px;
}
  
  /* The slider itself */
  .slider {
    -webkit-appearance: none;  /* Override default CSS styles */
    appearance: none;
    height: 18px; /* Specified height */
    background: #ffffff; /* Grey background */
    outline: none; /* Remove outline */
    border: 1px solid lightgray;
    border-style: inset;
  }
  
  
  /* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
  .slider::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    width: 18px; /* Set a specific slider handle width */
    height: 18px; /* Slider handle height */
    background: #87A6CD; /* Green background */
    cursor: pointer; /* Cursor on hover */
  }
  
  .slider::-moz-range-thumb {
    width: 18px; /* Set a specific slider handle width */
    height: 18px; /* Slider handle height */
    background: #87A6CD; /* Green background */
    cursor: pointer; /* Cursor on hover */
  }

.formColumn {
    display: inline-block;
    vertical-align: top;
    width: 270px;
    text-align: left;
}

.textContainer {
    width: 60%;
    height: auto;
    margin: auto;
    position: absolute;
    top: 20%;
    left: 20%;
    background-color: #87A6CD;
    color: white;
    text-align: center;
    border-radius: 20px;
    display: none;
}

table {
    width: 80%;
    padding: 10px;
    margin: auto;
    text-align: left;
    border-collapse: collapse;
}

td {
    border-collapse: collapse;
}

.num {
    text-align: right;
    width: 180px;
}

.innerText {
    text-align: center;
    padding: 10px;
    margin: auto;
    width: 80%;
}

input:invalid {
  border-color: transparent;
}