@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Yeseva+One&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import "scss/vendor/animate.min.css";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

main {
  height: 100vh;
}
main .wrapper {
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
main p {
  margin: 0 0 1em 0;
  color: #1436bf;
  animation-delay: 0.5s;
}
main p.name {
  font-size: 1.5em;
}
main h1 {
  font-size: 2.5em;
  color: #1436bf;
  font-family: "Montserrat", "arial", sans-serif;
  font-weight: 700;
  margin: 0 0 0.8em 0;
  animation-delay: 1s;
}

/* Media query for small desktops (min-width: 1024px) */
@media screen and (min-width: 1200px) {
  main h1 {
    font-size: 7em;
    margin: 0 0 0.2em 0;
  }
}
nav {
  padding: 2em 0 2em 0;
  position: fixed;
  width: 100%;
}
nav .wrapper {
  margin: 0 auto;
  width: 95%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav ul {
  display: flex;
}
nav ul li {
  color: #1436bf;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8em;
}
nav ul li i {
  font-size: 1.1em;
}
nav a {
  text-decoration: none;
}
nav .logo {
  font-size: 1.2em;
  color: #1436bf;
  font-weight: 700;
}
nav .logo span {
  font-size: 0.8em;
  font-weight: 400;
}

/* Media query for small desktops (min-width: 1024px) */
.btn {
  border-style: solid;
  border-width: 2px;
  border-color: #1436bf;
  padding: 0.7em 2em 0.7em 2em;
  border-radius: 100px;
  font-weight: 500;
  text-decoration: none;
  color: #1436bf;
  transition: 0.3s ease-in-out;
  display: inline-block;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.btn:hover {
  background: #1436bf;
  color: #f8efdf;
}

.btn-animated {
  animation-delay: 1.3s;
}

body {
  font-family: "Montserrat", "arial", sans-serif;
  background: linear-gradient(65deg, #f8efdf, #fff2ab, #fff0a7);
  background-size: 180% 180%;
  animation: gradient-animation 15s ease infinite;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}/*# sourceMappingURL=main.css.map */