/* @import url("https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Lora&display=swap"); */

@import url("https://fonts.karmatronix.com/fonts/kaushan-script-v14-latin.css");

@import url("https://fonts.karmatronix.com/fonts/roboto-v30-latin.css");

/* kaushan-script-regular - latin */
@font-face {
  font-family: "Kaushan Script";
  font-style: normal;
  font-weight: 400;
  src: local(""),
    url("https://fonts.karmatronix.com/fonts/kaushan-script-v14-latin-regular.woff2")
      format("woff2"),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
      url("https://fonts.karmatronix.com/fonts/kaushan-script-v14-latin-regular.woff")
      format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/*  fonts
font-family: 'Kaushan Script', cursive;
font-family: 'Lora', serif;
font-family: 'Roboto', sansserif;
*/
.rotate {
  font-size: 4rem;
  aspect-ratio: 1;
  display: inline-block;
  animation: rotation 20s infinite linear;
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-width: 340px;
  background-color: #000;
}
.logo img {
  /* filter: invert(0); */
  backdrop-filter: invert(20%);
  border-radius: 45%;
}

.nav {
  color: white;
  height: 100vh;
}
.background {
  background: url("/img/palm-trees.jpg");
  background-attachment: fixed;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: multiply;
  background-color: #333;
}

.container {
  width: 90%;
  margin: 0 auto;
  max-width: 1024px;
}

/* nav, */
.logo,
.nav,
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav {
  flex-direction: column;
}
.logo {
  align-items: center;
  border-bottom: 2px solid rgba(255, 255, 255, 0.25);
  /* border-radius: 7px; */
  padding: 0.1em 2em;
  /* background-color: rgba(255, 255, 255, 0.2); */
  /* background-color: rgb(7, 141, 204); */
}

.nav-brand {
  font-size: 3rem;
  font-family: "Kaushan Script", cursive;
  font-weight: 100;
  text-shadow: 1px 1px 3px black;
}

p {
  font-family: "Roboto", sansserif;
  margin-top: 0.25rem;
  color: rgb(89, 167, 255);
}
