:root {
  box-sizing: border-box;
}
* {
  transition: 200ms;
  user-select: none;
}
html, body {
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100%;
  font-size: 120%;
}
h1, h2, h3, h4, h5, h6, p, a, span, hgroup {
  font-family: "Charm", cursive;
  margin: 0px;
}
a {
  text-decoration: none;
  color: whitesmoke;
}

.flex-expander {
  flex-grow: 1;
}

.bonheur-royale-regular {
  font-family: "Bonheur Royale", cursive;
  font-weight: 400;
  font-style: normal;
}
.windsong-regular {
  font-family: "WindSong", cursive;
  font-weight: 400;
  font-style: normal;
}
.windsong-medium {
  font-family: "WindSong", cursive;
  font-weight: 500;
  font-style: normal;
}
.charm-regular {
  font-family: "Charm", cursive;
  font-weight: 400;
  font-style: normal;
}
.charm-bold {
  font-family: "Charm", cursive;
  font-weight: 700;
  font-style: normal;
}


#background {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#background>div {
  position: fixed;
  width: 100%;
  height: 100%;
}
#background>.image>img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#background>.overlay {
  background-color: #00000080;
}

main {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

header {
  padding: 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #ffffff10;
  backdrop-filter: blur(4px);
  color: whitesmoke;
}

footer {
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  background-color: #ffffff10;
  backdrop-filter: blur(4px);
}
.button {
  padding: 8px 32px;
  background-color: whitesmoke;
  border-radius: 64px;
  width: fit-content;
}
.button:hover {
  box-shadow: 0px 0px 16px 0px whitesmoke;
  cursor: pointer;
}

article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 32px;
  gap: 32px;
}
.main-card {
  background-color: #ffffff80;
  backdrop-filter: blur(2px);
  border-radius: 32px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: start;

}