/* Basic CSS settings */
html {
  color-scheme: light dark;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
  width: min(70ch, 100% - 2rem);
  margin-inline: auto;
  margin: 0;
  padding: 0;
}

img,
svg,
video {
  max-width: 100%;
  display: block;
}

/* Heading */

#title {
  width: 100vw;
  background-color: gold;
  height: 115px;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  border: 1px dotted #333;
  border-radius: 10px;
  width: 45%;
  min-width: 425px;
  height: 40%;
}

form label {
  display: flex;
  padding-top: 15px;
  justify-content: flex-end;
  text-align: right;
}

form label:nth-child(4) {
  padding-bottom: 15px;
}

input {
  width: 60%;
  margin: 0 20px;
}

button {
  max-width: 80px;
  margin-bottom: 15px;
  align-self: center;
}

#main-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: auto;
  width: 100vw;
}

#main-section div,
form {
  margin-top: 30px;
}

#most-recent {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* margin: 0; */
  border: 1px dotted #333;
  border-radius: 10px;
  width: 45%;
  min-width: 425px;
}

#most-recent h2 {
  font-size: 22px;
  margin: 0;
}

#most-recent h3 {
  margin: 0;
  font-weight: 400;
}

#newest-name {
  border-bottom: 1px dotted gold;
  width: 40%;
}

/* individual catchphrases styling */


.individual-catchphrases {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* margin: 0; */
  border: 1px dotted #333;
  border-radius: 10px;
  width: 45%;
  min-width: 425px;
  margin-top: 30px;
}

.individual-catchphrases h2 {
  font-size: 22px;
  margin: 0;
}

.individual-catchphrases h3 {
  margin: 0;
  font-weight: 400;
}

#all-catchphrases {
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

