@import url('https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap');

body {
  background-color: #DDCFFF;
  color: #040DE1;
  font-family: "DM Mono", sans-serif;
}
.home {
  display: flex;
  flex-direction: column-reverse;
}

@media (min-width: 1201px)
{
  .home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
.home figure {
    margin: 0;
    padding: 20px;
}
.home figure img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
}
a,
a:visited {
  color: #00034e;
}
a:hover {
  color: #fff;
}
.button {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background-color: #040DE1;
  padding: 10px 20px;
}
.button:hover,
.button:visited {
  color: #040DE1;
  background-color: #fff;
}