/* NAVIGATION BAR ELEMENTS */
.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

nav {
  background-color: #333;
  color: white;
  padding: 0.5rem;
  text-align: center;
  border-radius: 1rem;
  margin: 1rem;
}

nav .logo {
  font-family: 'Caveat Brush', cursive;
  font-size: 4rem;
}

nav .links {
  font-family: 'Play', sans-serif;
  margin: 1rem auto;
  display: flex;
  justify-content: space-around; /* or try space-between */
  max-width: 80%;

  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

nav a:link {
  color: white;
  text-decoration: none;
}

nav a:visited {
  color: white;
  text-decoration: none;
}

nav .links a:hover {
  color: rgb(0, 175, 255);
  text-decoration: underline;
  transform: scale(1.05);
}

nav .logo a {
  display: inline-block;
}

nav .logo a:hover {
  color: white;
  transform: scale(1.15) rotate(-3deg);
}

nav a {
  transition: transform 0.25s ease-in-out;
}

/* MOBILE FRIENDLY*/
@media (max-width: 768px) {
  /* Show toggle button */
  .menu-toggle {
    display: block;
    color: white;
  }

  nav .links {
    text-align: left;
    overflow: hidden;
    max-height: 0;            /* hidden by default */
    transition: max-height 0.5s ease;
    flex-direction: column;
    background-color: #333;
    border-radius: 0.5rem;
  }

  nav .links.active { /*show when active (default hidden)*/
    max-height: 500px;
  }

  nav .links a {
    padding: 0.75rem 0; /*increase size for tap*/ 
    font-size: 1.25rem;
  }
}



/* GENERAL & BACKGROUND*/

body {
  font-family: 'Ubuntu', sans-serif;
  color: #f7f7f7;
  background-image: url("../assets/main_bg.png");
  background-repeat: repeat;
  background-size: auto;
  background-color: rgba(0,0,0,0.9);
  background-blend-mode: darken;
}

h1, h2, h3 {
  font-family: 'Play', sans-serif;
  font-weight: 700;
  color: #ffffff;
}


/* MAIN BOX */
main {
  max-width: 60%;
  margin: 1rem auto;;
  padding: 2rem;
  background-color: #333;
  border: 2px solid black;
  border-radius: 1rem;
}

a {
  color: rgb(145, 145, 145)
}


/* BLCOKQUOTE */
blockquote {
  position: relative;
  margin: 1.5em 0;
  padding: 1em 1.5em 1em 1.5em;
  border-left: 6px solid rgb(0, 175, 255); /* blue bar on the left */
  background: rgba(0, 175, 255, 0.1); /* bakgroduhn */
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.5;
  border-radius: 4px;
  max-width: 600px;
}

blockquote p {
  margin: 0;
}

blockquote {
  box-shadow: 0 2px 6px rgba(0,0,0,0.05); /*shadow*/
}

blockquote.warning {
  border-left: 6px solid rgb(255, 0, 0); /* blue bar on the left */
  background: rgba(255, 0, 0, 0.2);
}



/* PROJECT BOX */
.project-box {
  max-width: 60%;
  margin: 2rem auto;;
  padding-right: 5rem;
  padding-left: 5rem;
  padding-top: 0.3rem;
  padding-bottom: 1rem;
  background-color: #333;
  /*border: 2px solid rgb(0, 238, 255);*/
  border-radius: 5rem;
  transition: transform 0.25s ease-in-out;
  box-shadow: 0 5px 5px 0 rgba(0, 255, 229, 0.616)
}

.project-box:hover {
  transform: scale(1.03)
}

.project-box h1 {
  text-align: center;
}


