* {box-sizing: border-box;}

a:link {
  color: #ECF0F1; 
  background-color: transparent; 
  text-decoration: none;
}

a:visited {
  color: #ECF0F1;
  background-color: transparent;
  text-decoration: none;
}

body { 
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #9E71AF;
}

/* Contact */
.contact {
  display: table;
  margin-left: 3%;
  width: 94%;
}

.contact-row {
  display: table-row;
}

.contact p {
  color: white;
  font-size: 20px; 
  text-align: center;
  width: 100%;
}

/* Content */
.content {
  display: table;
  margin-left: 3%;
  width: 94%;
}

.content-col-left {
  align: left;
  display: table-cell;
  vertical-align: middle;
  padding: 50px;
  width: 50%;
}

.content-col-right {
  align: right;
  display: table-cell;
  vertical-align: middle;
  width: 50%;
}

.content .content-col-left a img {
  height: 50px;
}

.content .content-col-right img {
  float: left;
  width: 100%;
}

.content-title {
  color: white;
  font-size: 26px;
}

.content-text {
  color: white;
  font-size: 16px; 
}

/* Footer */
footer {
  bottom: 0;
  color: #ECF0F1;
  display: table;
  height: 40px;
  position: relative;
  text-align: center;
  width: 100%;
}

/* Header */
.header {
  overflow: hidden;
  background-color: #714584;
  padding: 20px 10px;
  width: 100%;
}

.header a {
  float: left;
  color: white;
  text-align: center;
  margin: 2px;
  padding: 12px;
  text-decoration: none;
  font-size: 18px; 
  line-height: 25px;
  border-radius: 4px;
}

.header img.logo {
  float: left;
  height: 50px;
  width: 50px;
}

.header a:hover {
  background-color: #9E71AF;
  color: white;
}

.header a.active {
  background-color: #9E71AF;
  color: white;
}

.header-shopfor {
  font-size: 38px; 
}

.header-right {
  float: right;
}

/* Help */
.help {
  display: table;
  width: 100%;
  margin-left: 3%;
  width: 94%;
}

.help-row {
  display: table-row;
}

.help-col-left {
  display: table-cell;
  width: 20%;
}

.help-col-left img {
  width: 100%;
}

.help-col-right {
  display: table-cell;
  width: 80%;
  vertical-align: top !important;
}

.help-col-right p {
  color: white;
}

.help-content img {
  grid-area: image;
  width: 100%;
}

.help-title {
  color: white;
  font-size: 20px;
  text-align: center;
}

@media screen and (max-width: 500px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  
  .header-right {
    float: none;
  }
}