@import url("https://fonts.googleapis.com/css2?family=Dela+Gothic+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap");
h1,
h2,
h3 {
  font-family: "Dela Gothic One", cursive;
}

p,
a {
  font-family: "Open Sans", sans-serif;
}

a {
  text-decoration: underline;
  font-weight: bold;
}

a:hover {
  cursor: pointer;
}

body {
  margin: 0;
  padding: 20px;
  background-color: #121212;
}

body header {
  width: 100%;
  max-width: 375px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}

body header img {
  margin: 0 auto;
}

body header h1 {
  text-align: center;
  color: #fff;
  font-size: 28px;
  margin: 0;
}

body header h3 {
  text-align: center;
  font-family: "Open Sans", sans-serif;
  margin: 10px 0 0 0;
  color: #fff;
}

body header p {
  font-size: 16px;
  text-align: center;
  color: #fff;
  text-shadow: 0px 0px 30px #00000030;
  margin: 10px 0 0 0;
}

body main section .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  max-width: 375px;
  margin: 0 auto;
  color: #fff;
}

body main section .links ul {
  width: 100%;
  padding: 0;
  list-style-type: none;
}

body main section .links ul li a:hover {
  background-color: #fff;
  color: #000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

body main section .links ul li a {
  display: block;
  border: 1px solid #fff;
  padding: 18px 8px;
  margin: 15px 0;
  text-align: center;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
}

body footer {
  margin-top: 84px;
  margin-bottom: 100px;
  text-align: center;
}

body footer hr {
  border-top: 1px solid #fff;
  margin-bottom: 18px;
}

body footer .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 15px;
  place-content: center;
}
/*# sourceMappingURL=style.css.map */