* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  color: #EDDFEF;
}

body, html {
  height: 100svh;
  width: 100vsw;
  background-color: #3F9E9D;
}

main {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

h1, h2 {
  margin-top: 25px;
}

ul {
  list-style: none;
}
ul li {
  margin: 5px 0;
  display: block;
}
ul li a {
  padding: 25px;
  gap: 20px;
  display: flex;
  align-items: center;
  background-color: #464655;
  border: 2px solid #464655;
  border-radius: 5px;
  text-decoration: none;
}
ul li a:hover {
  background-color: transparent;
}
ul li a img {
  height: 50px;
  width: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (width <= 420px) {
  ul li a {
    flex-direction: column;
  }
}/*# sourceMappingURL=style.css.map */