@import url("https://fonts.googleapis.com/css2?family=Quantico:ital,wght@0,400;0,700;1,400;1,700&display=swap");

* {
  box-sizing: border-box;
}

body {
  margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Quantico", sans-serif;
  font-weight: 700;
  font-style: normal;
}

p,
a,
ul,
ol,
li,
button {
  font-family: "Quantico", sans-serif;
  font-weight: 400;
  font-style: normal;
}

a {
  text-decoration: none;
}

ul {
  list-style-type: none;
  /* margin-left: 2vw; */
  line-height: 2;
}

li {
  margin-bottom: 1vh;
}

/*Base font size*/
html {
  font-size: 12px;
}

p,
a,
ul,
ol,
li {
  font-size: 2rem;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.5rem;
}

p {
  line-height: 2;
  margin-bottom: 2vh;
}

h1,
h2,
h3 {
  line-height: 1.5;
}

figure {
  margin: 0;
  padding: 0;
}

.center {
  text-align: center;
}

hr {
  margin: 0;
}

b {
  color: #fafafa;
  background-image: linear-gradient(to right, #f6bb2680 0%, #b4b43180 100%);
  background-position: left bottom;
  background-size: 100% 0.65em;
  background-repeat: no-repeat;
}

img {
  border: solid 3px #12183a;
}

/*Rules for mobile devices*/
@media (width <= 1250px) {
  html {
    font-size: 8px;
  }

  h2 {
    font-size: 2.5rem;
  }
}

a:link, a:visited {
  color: aqua;
}

a:hover, a:active {
  color: #D0F8F6;
}