* {
  box-sizing: border-box;
}

@font-face {
  font-family: betterSweet;
  src: url(../fonts/Better\ Sweet.ttf);
}

:root {
  --main-bg-color: #28203c;
  --ascent-color: #e38142;
  --dash-bg-color: #F0E5DE;
}

img {
  max-width: 100%;
}

.color-grey {
  color: var(--grey-color);
}

.color-orange {
  color: var(--ascent-color);
}

body {
  margin: 0;
  background-color: var(--main-bg-color);
  color: white;
  font-family: betterSweet;
}

.body-container {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

nav {
  padding-top: 1em;
  display: flex;
  justify-content: flex-end;
}

.nav-btn {
  padding: 0.2em 1em;
  border-radius: 5px;
  text-decoration: none;
  color: var(--ascent-color);
  background-color: white;
  cursor: pointer;
}

.nav-btn:hover,
.nav-btn:focus {
  opacity: 0.75;
}

.main {
  padding: 5em 0;
}

.main-img {
  width: 100%;
}

.step {
  margin: 2em auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.step-header {
  font-size: 1.5rem;
}

.step-subtext {
  margin-top: 0;
  font-family: 'Courier New', Courier, monospace;
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
}

.quote {
  font-family: 'Courier New', Courier, monospace;
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
}

.btn {
  font-size: 1rem;
  padding: 0.05em 2.5em;
  border-radius: 20px;
  color: white;
  text-decoration: none;
  background-color: #e38142;
  cursor: pointer;
}

.btn:hover,
.btn:focus {
  opacity: 0.75;
}

.underline {
  text-decoration: underline;
  font-size: 1.5rem;
}

.info {
  margin: 5em 0;
}

.info-img {
  width: 35%;
}

.panel > p {
  margin-top: 0;
  font-family: 'Courier New', Courier, monospace;
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
}

.bottom-margin {
  margin-bottom: 5em;
}

/* for sign up page */
label {
  align-self: flex-start;
}

.label-orange {
  color: var(--ascent-color);
}

textarea {
  border-radius: 10px;
  padding: 1em;
  resize: none;
}

textarea::placeholder {
  font-size: 15px;
}

.formdetail {
  display: flex;
  flex-direction: column;
  width: 70%;
  margin: 4em auto;
}

.formlabel {
  font-size: 1.5rem;
}

.radiosContainer {
  display: flex;
  justify-content: flex-start;
  gap: 1em;
  flex-wrap: wrap;
  margin: 1em 0;
}

.radioContainer {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.radio {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  border-radius: 20px;
  background-color: white;
  color: grey;
  padding: 0.3em 1em;
  font-size: 1rem;
}

.checkmark:hover,
.radioContainer input:focus ~ .checkmark {
  opacity: 0.75;
}

.radioContainer input:checked ~ .checkmark {
  background-color: var(--ascent-color);
  color: white;
}

.input {
  height: 3em;
  border-radius: 10px;
  padding: 1em;
}

.button-margin {
  margin: 2em 0;
}

@media (min-width: 600px) {

  .main-img {
    width: 50%;
  }

  .step {
    width: 55%;
  }

  .btn {
    font-size: 1.7rem;
  }

  .info-container {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }

  .info-container > * {
    flex-basis: 100%;
  }

  .underline {
    font-size: 2.5rem;
  }

  /* for sign up */

  
}