*{
  margin: 0;
  padding: 0;
  font-family: Ubuntu, Verdana, 'Lucida Sans Unicode', sans-serif;
  color: #2c3e50;
}

h1{
  margin: 25px 0;
}
h2{
  margin: 20px 0;
}
h3{
  margin: 15px 0;
}
h4{
  margin: 15px 0;
}
h5{
  margin: 15px 0;
}
table, tr, td{
  border: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.checkbox{
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #2c3e50;
}
.checkbox input{
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox span{
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #edb4bb;
  transition: 0.6s;
}

.checkbox input:checked ~ span{
  background-color: #c3081d;
}

.checkbox span:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox input:checked ~ span:after {
  display: block;
}

.checkbox span:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.checkbox a{
  font-size: 16px;
}

a:link {
  color: inherit;
}

a:visited {
  color: inherit;
}

a:hover {
  color: inherit;
}

a:active {
  color: inherit;
}
.coming-soon span{
  display: inline-block;
  width: 49%;
  font-size: 40px;
  font-weight: bold;
}
.coming-soon img{
  width: 49%;
  vertical-align: middle;
  margin: 20px 0;
}

hr{
  border-top: 3px solid #9c0617;
  margin: 10px 0px;
}
li{
  margin-left: 30px;
}
@media screen and (max-width:800px) {
  .coming-soon span{
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .coming-soon img{
    width: 100%;
    vertical-align: middle;
    margin: 0;
  }
}
