@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap");
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Archivo", serif;
  font-size: 16px;
  color: #484554;
  background-image: url(/img/background.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.wrapper {
  position: relative;
  display: block;
}
@media (max-width: 991.98px) {
  .wrapper {
    display: flex;
    justify-content: center;
  }
}

.body-container {
  width: 476px;
  max-width: 80%;
  margin-top: 120px;
  margin-left: auto;
  margin-right: auto;
}

img {
  max-width: 100%;
}

.logo img {
  width: 40px;
}

p {
  cursor: default;
  line-height: 1.9;
  font-size: 0.9375rem;
  color: #484554;
  padding: 0;
  margin: 0.75rem 0;
}
p b {
  font-weight: 500;
}

h1 {
  cursor: default;
  font-weight: 500;
  font-size: 1rem;
  line-height: 120%;
  color: #000;
  padding: 0;
  margin: 1.5rem 0 0;
}

a {
  color: #000;
  text-decoration: none;
  cursor: default;
  position: relative;
  border-bottom: 0;
  display: inline-block;
}
a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  margin: 0 0 2px;
  background-color: #5634c5;
  visibility: hidden;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.2s ease-in-out 0s;
}
a:hover {
  color: #5634c5;
}
a:hover:after {
  visibility: visible;
  transform: scaleX(1);
}

hr {
  border-style: dashed;
  border-color: #999999;
  border-bottom: 1px;
  margin-top: 1.5rem;
}

ul.links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 20px;
  font-size: 0.9375rem;
  margin-top: 1.5rem;
}
ul.links a {
  position: relative;
  padding: 0;
  border-bottom: 0;
  color: #000;
}
ul.links a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  margin: 0 0 -6px;
  background-color: #5634c5;
  visibility: hidden;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.2s ease-in-out 0s;
}
ul.links a:hover {
  color: #5634c5;
}
ul.links a:hover:after {
  visibility: visible;
  transform: scaleX(1);
}/*# sourceMappingURL=style.css.map */