/* FONTS */
/* ---------------------------- */
/* poppins-regular - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/poppins-v20-latin-regular.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/poppins-v20-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/poppins-v20-latin-regular.woff2") format("woff2"), url("../fonts/poppins-v20-latin-regular.woff") format("woff"), url("../fonts/poppins-v20-latin-regular.ttf") format("truetype"), url("../fonts/poppins-v20-latin-regular.svg#Poppins") format("svg");
  /* Legacy iOS */
}

/* poppins-700 - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/poppins-v20-latin-700.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/poppins-v20-latin-700.eot?#iefix") format("embedded-opentype"), url("../fonts/poppins-v20-latin-700.woff2") format("woff2"), url("../fonts/poppins-v20-latin-700.woff") format("woff"), url("../fonts/poppins-v20-latin-700.ttf") format("truetype"), url("../fonts/poppins-v20-latin-700.svg#Poppins") format("svg");
  /* Legacy iOS */
}

:root {
  --main-bg-color: #181630;
  --main-base-color: rgb(154, 184, 224);
  --main-accent-color: #ff3366;
  --font-family-body: Poppins, sans-serif;
  --font-family-header: Poppins, sans-serif;
  --main-padding: 6vw;
}

html {
  font-size: 100%;
  font-size: 14px;
}

html,
body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family-body);
  background: var(--main-bg-color);
  color: var(--main-base-color);
  line-height: 1.4;
}

h1,
h2,
h3 {
  font-family: var(--font-family-header);
  margin-bottom: 0.25rem;
}

h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: #fff;
}

p {
  margin: 0 0 0.25rem;
}

a {
  text-decoration: none;
  color: inherit;
  border-bottom: 2px solid var(--main-accent-color);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

a:hover {
  border-color: white;
}

.btn {
  position: relative;
  display: inline-block;
  background: var(--main-accent-color);
  color: white;
  padding: 1em 2em;
  border-radius: 20em;
  border: 0;
  font-size: 1.25rem;
  margin-top: 4rem;
}

.btn:hover {
  opacity: 0.8;
}

.main {
  /* background: transparent url(/assets/img/world_map_dots.svg) center center
        no-repeat;
    background-size: contain; */
  padding: 0 var(--main-padding);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 767px) {
  .main {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .main > div {
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .main {
    height: 100vh;
  }
}

.main__info__featured {
  font-size: 2.4rem;
}

.main__info__extra {
  margin-top: 10vh;
}

footer {
  font-size: 0.8rem;
  font-weight: 700;
  display: block;
  position: fixed;
  bottom: 10px;
  width: calc(100vw - (var(--main-padding) * 2));
  text-align: center;
}

footer a {
  border-bottom: none;
}

footer a:hover {
  color: white;
}

footer li {
  list-style: decimal;
  display: inline-block;
  margin-left: 10px;
}

.footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1279px) {
  .footer__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__info p {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

/* ---- particles.js container ---- */
#particles-js {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-bg-color);
  background-image: url("");
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
/*# sourceMappingURL=main.css.map */