@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;600&family=Roboto:wght@400;700&display=swap");
* {
  box-sizing: border-box;
}

html {
  margin: 0;
  font-family: roboto, sans-serif;
}

body {
  margin: 0;
  height: 100vh;
  background-color: #ccc;
  display: grid;
  grid-template-rows: 4rem 1fr minmax(8rem, min-content);
  grid-template-areas: "header" "main" "footer";
}

header {
  grid-area: header;
  background-color: #333;
  color: #bc86ee;
  display: grid;
  place-items: center;
}
header div {
  height: 100%;
  padding: 0 1rem;
  display: grid;
  align-items: center;
}
header div h1 {
  color: #bc86ee;
  margin: 0;
}
@media (min-width: 40rem) {
  header div {
    width: 40rem;
    border-left: 2px solid #666666;
    border-right: 2px solid #666666;
  }
}

main {
  grid-area: main;
  display: flex;
  flex-direction: column;
  align-items: center;
}
main .main-container {
  height: 100%;
  width: 100vw;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 40rem) {
  main .main-container {
    width: 40rem;
    border-left: 2px solid #666666;
    border-right: 2px solid #666666;
  }
}

footer {
  height: 100%;
  grid-area: footer;
  background-color: #333;
  display: grid;
  place-items: center;
}
footer .footer-container {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-evenly;
}
@media (min-width: 40rem) {
  footer .footer-container {
    height: 100%;
    flex-direction: row;
    width: 40rem;
    border-left: 2px solid #666666;
    border-right: 2px solid #666666;
  }
}

button {
  color: #bc86ee;
  font-size: 1.25rem;
  background-color: #333;
  text-decoration: none;
  border: 2px solid #333;
  padding: 0.5rem 0;
  margin: 0;
}
button:hover {
  border: 2px solid #999999;
}
button:active {
  background-color: #4d4d4d;
}

#image {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.card h2 {
  color: #8a2ce2;
  margin: 0;
}
.card p {
  margin: 0;
  color: #bc86ee;
}
.card p a {
  text-decoration: none;
  color: #d5b3f5;
}

/*# sourceMappingURL=style.css.map */
