/******************************************
/* CSS
/*******************************************/

/* Box Model Hack */
*{
  box-sizing: border-box;
}

/******************************************
/* LAYOUT
/*******************************************/

body {
  margin: 140px 16px;
  background: linear-gradient(#043c75 25%, #437a5d 55%, #eff589 90%);
  background-repeat: no-repeat;
}

.container-header {
  height: 32px;
  background-color: #437a5d;
  border-radius: 8px 8px 0 0;
}

.container {
  margin: 0 auto;
  padding: 32px 24px;
  background-color: #363636;
  border-radius: 0 0 8px 8px;
}

section {
  padding-bottom: 24px;
  border-bottom: 2px dashed #437a5d;
}

h1,
h2 {
  font-family: "Sometype Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  color: #eff589;
  text-transform: lowercase;
  transform: rotate(-4deg);
  padding-bottom: 0.5em;
}

p,
label {
  font-family: "Sometype Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 1.4;
  padding-bottom: 10px;
  color: #eff589;
}

a {
  font-family: "Sometype Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
  line-height: 1.4;
  color: #eff589;
  text-decoration-style: dashed;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;

  background-image: linear-gradient(#437a5d, #437a5d);
  background-size: 0% 100%;
  background-repeat: no-repeat;
}

a:hover,
a:focus {
  background-size: 100% 100%;
  color: #eff589;
  text-decoration-style: unset;
}


img{
  display: block;
  margin: 0 auto;
}

.party-popper-emoji {
  font-size: 48px;
  margin: 0 auto;
  display: block;
  text-align: center;
}

section.last {
  border-bottom: 0;
}

@media (min-width: 800px) {
  body {
    margin-left: 40px;
    margin-right: 40px;
  }
  .container {
    padding-left: 80px;
    padding-right: 80px;
  }
  .two-column {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-content: stretch;
    gap: 24px;
    margin-bottom: 24px;
  }
  .two-column h1, 
  .two-column h2,
  .two-column .tada-section {
    flex-grow: 1;
    flex-basis: 33.33%;
  }
  .two-column div {
    flex-grow: 2;
    flex-basis: 66.66%;
  }
  .tada-section {
    display: flex;
    gap: 24px;
    align-items: center;
  }
  .party-popper-emoji {
    text-align: left;
  }
}

@media (min-width: 1279px) {
  .container {
    padding-left: 180px;
    padding-right: 180px;
    padding-bottom: 180px;
    display: flex;
    gap: 24px;
  }
  .desktop-content {
    flex-basis: 66.66%;
  }
  .desktop-sidebar {
    flex-basis: 33.33%
  }
  .desktop-sidebar .two-column {
    flex-direction: column;
    gap: 0;
  }
  .desktop-sidebar .two-column p {
    margin-top: 0;
  }
  .party-popper-emoji {
    text-align: left;
  }
}


/******************************************
/* ADDITIONAL STYLES
/*******************************************/