html,body  {
  font-family: 'IBM Plex Sans', sans-serif;
  cursor: crosshair;
  margin: 0;
  padding: 0;
}

a:hover {
  text-decoration: none;
}

p, a {
  color: #ffffff;
}

/* ----- structure ----- */

main {
  background-color: #0088ff;
  margin: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.container {
  height: 100%;
  margin: 32px;
  display: flex;
  flex-direction: column;
  gap:14px;

}

.container a {
text-decoration-style: wavy;
text-decoration-color: red;
}

.container p {
  font-size: 32px;
  width: 50%;
  margin: 0;
}

@media screen and (max-width: 810px) {
  .container p {
    font-size: 24px;
    width: 100%;
  }
}



/* ----- footer ----- */

footer {
  height: 5vh;
  position: fixed;
}

.footer {
  display: flex;
  justify-content: left;
  align-items: center;
}

footer a, p {
  font-size: 14px;
  margin-left: 14px;
}

@media screen and (max-width: 810px) {
  footer {
    height: auto;
  }

}
