* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  background:linear-gradient(#F3C5C5, #C1A3A3, #886F6F, #694E4E);
  font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

/* --- HEADER STYLING  --- */
.image-header {
  width: 100vw;
  height: 50vh;
  background-image: url('/images/hero.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  font-family: 'Sedgwick Ave', cursive;
}

.image-header .fab {
  color:rosybrown;
  padding: 2px;
  cursor:pointer;
} 

.header-title {
  font-size: 36px;
  display: flex;
  justify-content: center;
}

.header-title a {
  color:mediumpurple;
}

.inspo {
  display:flex;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  color: black;
}

.inspo:hover {
  transform: scale(1.4);
  cursor: pointer;
}

.header-text {
  font-size: 14px;
  color:mediumvioletred;
  transition: transform .6s;
  cursor: pointer;
  display: flex;
  justify-content:center;
  padding: 24px;
}

.header-text:hover {
  color:yellow;
  transform: scale(1.2);
}

/* --- PARENT TO FORM-CONTAINER and ACCORDION --- */
.parent {
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* --- STYLING OF THE FORM --- */
.form-container {
  width: 300px;
  height: auto;
  margin-top: 24px;
  padding: 24px;
  border: 2px solid;
  box-shadow: 8px 8px 0 0 lightgray;
  background:lavenderblush;
  border-radius: 4px;
}

.form-container h2 {
  font-size: 36px;
  text-align: center;
  text-transform: uppercase;
}

.form-container h2:hover {
  color:palevioletred;
  cursor: pointer;
}

.checkboxes {
  font-size: 10px;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
  
.submit-btn {
  background:pink;
  border: 2px solid;
  cursor: pointer;
  width: 96px;
  padding: 8px;
  border-radius: 4px;
  font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size:24px;
}

textarea {
  border: 2px solid;
  background-color:linen;
  font-size: 10px;
  border: 2px solid;
  border-radius: 4px;
}

.experience-options {
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 12px;
}

/* --- STYLING OF THE ACCORDION --- */
.accordion {
  width: 300px;
  height: auto;
  margin-top: 24px;
  padding: 8px;
  border-radius: 4px;
  background:lavenderblush;
  border: 2px solid;
  box-shadow: 8px 8px 0 0 lightgray;
}

.accordion h2 {
  font-size: 36px;
  text-align: center;
}

.accordion h2:hover {
  color:skyblue;
  cursor: pointer;
}

.accordion .contentBx {
  position: relative;
  margin: 10px 20px;
}

.accordion .contentBx a {
  color:mediumpurple;
}

.accordion .contentBx .label {
  position: relative;
  padding: 10px;
  background:palevioletred;
  color: white;
  cursor: pointer;
  font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  border-radius: 4px;
  font-size:12px;
}

.accordion .contentBx .label:hover {
  background:rosybrown;
}

.accordion .contentBx .label::before {
  content: '+';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 1.5em;
  color:midnightblue;
}

.accordion .contentBx.active .label::before {
  content: '-';
}

.accordion .contentBx .content {
  position: relative;
  background: snow;
  height: 0;
  overflow: hidden;
  transition: 0.5s;
  overflow-y: auto;
}

.accordion .contentBx.active .content {
  height: 60px;
  padding: 10px;
}

.content p {
  font-family:Verdana, Geneva, Tahoma, sans-serif;
  font-size: 12px;
}

/* --- FOOTER STYLING --- */
.footer {
  margin-top: 60px;
}

.footer > div {
  display: flex; 
  align-items:center;
  justify-content: center;
  padding: 4px;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 12px;
  background:lavender;
}

.image-credit a {
  color:tan;
}

/* --- TABLET SIZE --- */
@media (min-width: 667px) and (max-width: 1024px) {
  .image-header {
    width: 100vw;
    height: 25vh;
  }

.header-title {
  font-size: 24px;
  display: none;
}

.inspo {
  display:none;
}

.header-text {
  font-size: 18px;
  color:#694E4E;
}

.form-container {
  width: 500px;
  box-shadow: none;
}

.accordion {
  width: 500px;
  box-shadow: none;
}
}

/* --- DESKTOP SIZE --- */
@media (min-width: 1025px) {
  .image-header {
    width: 100vw;
    height: 100vh;
  }

  .header-title {
    font-size: 96px;
  }
  
  .header-text {
    font-size: 18px;
    color:#694E4E;
  }

  .header-text:hover {
    transform: scale(0.8);
    font-size: 36px;
  }
  
  .parent {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  .form-container {
    width:500px;
  }

  .form-container h2 {
    font-size: 48px;
  }
  
  .accordion {
    width:500px;
    margin-left: 48px;
  }

  .accordion h2 {
    font-size: 48px;
  }

  .accordion .contentBx .label {
    font-size: 16px;
  }
}