* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: 'Courier New', Courier, monospace;
  /* Make it so that 1rem = 10px because 62.5% of default browser font size (16px) is 10px */
  font-size: 62.5%;
  min-height: 100%;
  height: 100%;
  /* background: #feffe0; */
  color: black;
}

h3 {
  text-decoration: underline;
}

#root {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

#header {
  padding-bottom: 24px;
}

#top-line {
  display: flex;
  padding: 36px;
  padding-bottom: 0;
}

#title-pic {
  max-height: 200px;
}

#titles {
  margin-left: 48px;
}

#main-title {
  margin: 0;
  font-size: 8rem;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}

.sub-title {
  margin: 0;
  margin-left: 24px;
  font-size: 2rem;
}

#main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.7rem;
}

#main > * {
  width: 100%;
  max-width: 770px;
  padding: 24px 48px;
}

#details-and-join {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.jam-details {
  margin-right: 48px;
}

.jam-details ul {
  list-style-type: none;
  margin-top: 8px;
}

.jam-details span {
  font-weight: bold;
}

.join-button {
  padding: 12px;
  border: 1px solid black;
  background: #b5d7e9;
  /* color: black;
  text-decoration: none; */
  font-weight: bold;
}

.join-button:hover {
  background: #a5d2ea;
}

.about-info li {
  margin-left: 48px;
  margin-top: 12px;
}

.about-info ol ul li {
  margin-left: 16px;
  margin-top: 12px;
}

.mini-p {
  font-size: 1.2rem;
}

#my-quote {
  font-size: 1.2rem;
  border-left: 2px solid #00000066;
  padding: 8px 0 8px 16px;
}

#bottom-join-button-wrapper {
  display: flex;
  justify-content: center;
}

#bottom-line {
  padding-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-direction: row;
}

#copywrite {
  font-size: 1rem;
  margin-left: 12px;
  margin-bottom: 8px;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -*/

/* 870 = arbitrary cutoff for title to not look dumb */
@media (max-width: 870px) {
  #main-title {
    font-size: 7rem;
  }
}

/* 800 = arbitrary cutoff for details and join button to break into two lines */
@media (max-width: 800px) {
  #main-title {
    font-size: 6rem;
  }

  #details-and-join {
    flex-direction: column;
  }

  .jam-details {
    margin-bottom: 48px;
  }
}

/* 720 = arbitrary cutoff for bottom line to not look dumb */
@media (max-width: 720px) {
  #bottom-line {
    flex-direction: column-reverse;
    align-items: center;
  }
}

/* 590 =  */
@media (max-width: 590px) {
  #top-line {
    padding: 24px;
  }

  #titles {
    margin-left: 24px;
  }

  #copywrite {
    margin-left: 0;
    margin-top: 4px;
  }
}

/* 550 = arbitrary cutoff for title to not look dumb */
@media (max-width: 550px) {
  #main-title {
    font-size: 5rem;
  }
}

@media (max-width: 500px) {
  #title-pic {
    display: none;
  }
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -*/

.hidden-icon-label {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
}
