a, a:visited {
  color: white;
}

.bold {
  font-weight: 800;
}

.mg-t-10 {
  margin-top: 10px;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

h1 {
  margin: 0;
  font-size: 48px;
  padding: 10px;
}
@media (min-width: 70px) {
  h1 {
    margin: 15px 0;
  }
}
@media (min-width: 1080px) {
  h1 {
    font-size: 64px;
    padding: 0;
    margin: 25px 0;
  }
}

body {
  display: grid;
  height: calc(100vh - 69px);
  width: 100%;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  font-size: 24px;
  color: #3E53C8;
}
@media (min-width: 700px) {
  body {
    height: calc(100vh - 85px);
    font-size: 32px;
  }
}
@media (min-width: 1080px) {
  body {
    height: 100vh;
  }
}
body #pr-container {
  display: none;
}
body.checked #header-container {
  display: none;
}
body.checked #form-container {
  display: none;
}
body.checked #pr-container {
  display: grid;
}
body.checked main {
  grid-template-rows: auto;
}

.grid {
  grid-template-areas: "main" "sidebar";
  grid-template-rows: auto min-content;
}
@media (min-width: 1080px) {
  .grid {
    grid-template-rows: unset;
    grid-template-areas: "sidebar main";
    grid-template-columns: 100px auto;
  }
}

#sidebar {
  grid-area: sidebar;
  position: fixed;
  width: 100%;
  bottom: 0;
  padding: 5px;
  font-size: 18px;
  border-right: 0;
  border-top: 5px solid #3E53C8;
  background-color: white;
}
#sidebar p, #sidebar span {
  margin: 0;
}
#sidebar p.collective-name, #sidebar span.collective-name {
  font-weight: 800;
  text-transform: uppercase;
}
#sidebar span {
  display: none;
}
@media (min-width: 700px) {
  #sidebar {
    font-size: 32px;
    padding: 20px;
    position: static;
    width: auto;
    bottom: auto;
  }
  #sidebar p, #sidebar span {
    display: inline-block;
  }
}
@media (min-width: 1080px) {
  #sidebar {
    border-top: 0;
    border-right: 5px solid #3E53C8;
    border-bottom: 0;
  }
  #sidebar p, #sidebar span {
    writing-mode: vertical-lr;
    text-orientation: sideways;
    transform: rotate(-180deg);
  }
}

main {
  grid-area: main;
  display: grid;
  grid-template-rows: repeat(2, min-content);
  grid-gap: 50px;
  align-items: center;
  justify-items: center;
  background: linear-gradient(to bottom right, rgb(250, 160, 29) 0%, rgb(187, 186, 250) 60%);
}
@media (min-width: 700px) {
  main {
    grid-template-rows: min-content auto;
  }
}
main #form-container {
  z-index: 100;
  width: 100%;
  display: grid;
  justify-content: center;
  align-content: start;
}
@media (min-width: 1080px) {
  main #form-container {
    height: 100%;
    justify-items: center;
  }
}
main form {
  white-space: nowrap;
  position: absolute;
  width: 100%;
}
main form > fieldset {
  display: grid;
  grid-gap: 2.5rem;
  border-width: 0px;
  padding: 0;
}
@media (min-width: 700px) and (orientation: landscape) {
  main form > fieldset {
    grid-template-columns: 100%;
  }
}
@media (min-width: 1080px) {
  main form > fieldset {
    border-width: 0px;
    padding: 0;
  }
  main form > fieldset p:not(:first-of-type) {
    margin-top: 30px;
  }
}
main form label {
  cursor: pointer;
  background-color: white;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid transparent;
}
main form label:hover {
  background-color: #3E53C8;
  color: white;
}
main form label:checked {
  background-color: #3E53C8;
  color: white;
}
main form input[type=radio i] {
  display: none;
}
main #pr-container {
  background-color: #3E53C8;
  color: white;
  padding: 30px;
  width: 60%;
}
main #pr-container .pr-description {
  display: grid;
  align-items: center;
  justify-items: center;
  margin-top: 20px;
}
main #pr-container .pr-description img {
  width: 50%;
}
main #pr-container .pr-description .pr-description-text {
  margin-top: 20px;
}
@media (min-width: 700px) {
  main #pr-container .pr-description {
    grid-template-columns: 30% 70%;
  }
  main #pr-container .pr-description img {
    width: 90%;
  }
}
main #pr-container h1 {
  font-size: 24px;
}
main #pr-container p {
  font-size: 16px;
}
main #pr-container p.pr-info {
  font-size: 14px;
}
@media (min-width: 700px) {
  main #pr-container p {
    font-size: 18px;
  }
}
@media (min-width: 1080px) {
  main #pr-container h1 {
    font-size: 32px;
  }
  main #pr-container p {
    font-size: 24px;
  }
}

img.sphere {
  z-index: -1;
  width: 250px;
  animation: spin 90s linear infinite;
  align-self: center;
  justify-self: center;
}
@media (min-width: 700px) {
  img.sphere {
    width: 60%;
  }
}
@media (min-width: 1080px) {
  img.sphere {
    width: 450px;
  }
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=style.css.map */