body{
    font-family: 'OpenDyslexic';
    background-image: url(../images/index-alt/purpl032.jpg);
    color: lavenderblush;
    background-color: black;
}
section{
    width: 90%;
    justify-items: center;
}
div {
    width: 20%;
    margin-left: 5%;
    background-image: url(../images/index-alt/purpl112.jpg);
    border: solid 10px purple;
    border-radius: 25px;
    padding: 20px;
    text-align: center;
    margin-top: 80px;
    margin-bottom: 40px;
    height: auto;
}
/*classes*/
.signature {
    font-family: '18thCenturyKurrentTextRegular';
    font-size: 50px;
}
.flex-main{ display: flex;
justify-content: space-between;
flex-direction: row;
}
.flex-bottom{display: flex;
justify-content: center;
flex-direction: row;
}
.flex-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.formHead {
   background-color: rgba(255, 255, 255, 0.3); 
   border-radius: 30px;
   padding-top: 17px; 
   padding-right: 5px; 
   padding-left: 5px;
}
/*mobile*/
@media (max-width: 800px){
  .flex-main{
    flex-direction: column;
    justify-content: center;
  }
  .flex-bottom {
    flex-direction: column;
  }
  .flex-top {
    flex-direction: column;
    justify-content: center;
  }
  .formHead{
    padding-bottom: 17px;
  }
  #castle {
    padding-top: 0px;
    align-self: center;
  }
  div{
    width: 80%;
    margin-left: auto;
    margin-bottom: 0px;
  }
  body {
    min-width: 650px
  }
}
/*ids*/
#bottom {width: 50%;
    margin-top: 2%;
    padding: 10px;
    text-shadow: 3px 3px 5px indigo;
}
#castle {
    padding-top: 80px;
}
#side {
    text-shadow: 3px 3px 5px indigo;
}
#displayOptions {
    background-color: rgb(255, 240, 245, .3);
    padding: 10px;
}
#switchLabel {
    margin-left: 20px;
}
/*toggle switch*/
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 35px;
}
.switch input {
    opacity: 0;
    height: 0;
    width: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: violet;
    -webkit-transition: .4s;
    transition: .4s;
}
.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: lavenderblush;
    -webkit-transition: .4s;
    transition: .4s;
}
input:checked + .slider {
    background-color: black;
}
input:focus + .slider {
    box-shadow: 0 0 1px black;
}
input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}
.slider.round {
    border-radius: 34px;
}
.slider.round:before {
    border-radius: 50%;
}
/*links*/
a:link {
    color: aqua;
}
a:visited {
    color: azure;
}
a:hover {
    color: violet;
}
a:active {
    color: lime;
}