body {
    height: 100vh;
    margin: 0;
    position: relative;
    font-family: Helvetica, Arial, sans-serif;
    background-color: #e6e7ee;
    color: #44476A;
    font-size: 1.2em;
}
#vertical {
    top: 15%;
    position: absolute;
}
#image-cont {
    height: 30vh;
    width: 99vw;
    text-align: center;
}
#align-img-cont {
    background-color: #f6e58d;
    height: 80%;
    display: inline-block;
    text-align: left;
    border-color: #D1D9E6;
    border: 0.0625rem solid transparent;
    border-radius: 2rem;
    position: relative;
    letter-spacing: 0.025em;
    box-shadow: 10px 10px 15px #b8b9be, -10px -10px 15px #ffffff;
}

img {
    height: 100%;
    border-radius: 2rem;
}

#text-cont {
    width: 99vw;
    text-align: center;
}

#align-txt-cont {
    height: 100%;
    display: inline-block;
}

table {
    border-collapse:separate;
    color: black;
    width: 45vh;
    border-spacing: 1rem;
}

.btn {
    border-color: #D1D9E6;
    border: 0.0625rem solid transparent;
    border-radius: 0.55rem;
    position: relative;
    letter-spacing: 0.025em;
    box-shadow: 10px 10px 15px #b8b9be, -10px -10px 15px #ffffff;
}

tr {
    text-align: left;
}

th {
    padding: 0.8rem;
    background-color: #2d3436;
    color: seashell;
    border-radius: 0.55rem;
}

a {
    color: #1e3799;
    text-decoration: none;
}

form {
    text-align: center;
    padding: 0.8rem;
}


.switch {
  display: inline-block;
  height: 34px;
  position: relative;
  width: 60px;
}

.switch input {
  display:none;
}

.slider {
  background-color: #ccc;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: .4s;
}

.slider:before {
  background-color: #fff;
  bottom: 4px;
  content: "";
  height: 26px;
  left: 4px;
  position: absolute;
  transition: .4s;
  width: 26px;
}

input:checked + .slider {
  background-color: #78e08f;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

input[type=submit] {
  width: 200px;
  height: 36px;
  border-radius: 18px;
  background-color: #079992;
  border: solid 1px transparent;
  color: #fff;
  cursor: pointer;
  transition: all .1s ease-in-out;
}

input[type=submit]:hover {
    background-color: transparent;
    border-color: #44476A;
    color: #44476A;
    transition: all .1s ease-in-out;
}















