* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  text-decoration: none;
}

*:focus {
  outline: none !important;
}

a,
button {
  cursor: pointer !important;
}

html,
body {
  height: 100%;
}

body {
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  position: relative;
  min-height: 100%;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 500px;
  height: auto;
}
@media screen and (max-width: 768px) {
  body {
    padding: 10px;
  }
}

.header img {
  width: 100%;
  max-width: 300px;
}

.links {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .links {
    gap: 5px;
  }
}
.links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #849ebd;
  border-radius: 20px;
  margin: 5px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  padding: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  min-height: 50px;
  transition: all 0.3s ease;
  min-height: 100px;
}
.links a svg {
  height: 25px;
}
.links a:hover {
  background: #CEC94A;
  color: #fff;
  transform: scale(1.05);
}

.footer svg {
  width: 100%;
}

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