body {
  background-image: url(assets/circle-scatter-haikei\(2\).svg);
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center !important;

}

#intro {
  background-color: #fff;
  background-image: url(assets/introshort.jpg);
  height: 100vh;
}

/* Height for devices larger than 576px */
/* @media (min-width: 992px) {
  #intro {
    margin-top: -58.59px;
  }
} */

/********** navbar *****************/
.navbar {
	padding: 0;
	margin-right: 0 !important;
	text-align: start;
	position: sticky;
	justify-content: space-between;
	padding: 0px;
	background-color: #ffffff00;
  }
  
  .navbar ul {
	margin: 0;
	padding: 0;
	display: inline-block !important;
	list-style: none;
	align-items: flex-end;
	justify-content: space-between;
  }
  
  .navbar a,
  .navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0 10px 30px;
	font-size: 20px;
	font-weight: 300;
  }

.nav-item,
.nav-item a{
	color: #d9d7d7 !important;
	font-weight: 30px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
	position: relative;
	padding: 5px 0;
	text-decoration: none;
	list-style: none;
	display: inline-block;
	padding-right: 20px;
}

.navbar ul li a:hover:after {
	width: 100%;
}

.navbar ul li a:after {
	content: "";
	position: absolute;
	left: 0;
	width: 0;
	height: 3px;
	background: #f382c7;
	transition: .3s;
	bottom: 0;
}

.nav-colored { background-color:#252424;};
.nav-transparent { background-color:#ffffff00;};
/*****end of navbar******/

/* Text */
.mine {
  font-size: 45px;
}

h2,
h4 {
  text-transform: uppercase;
  color: #ffffff;
}

.text {
  color: #ffffff;
}

.red {
  color: #f382c7;
  font-size: 55px;
  font-weight: 1000px;
}

.title {
  color: #f382c7;
}

.project-text {
  color: #ff5a5a;
}

.afkanerd-text a {
  text-decoration: none;
  color: #fff;
}

p {
  color: rgb(245, 220, 220);

}

.centre {
  align-items: center;
  justify-content: center;
}

.nav a {
  color: rgb(250, 242, 242);
  position: relative;
  font-weight: 400;
}

.bgl {
  background-color: linear-gradient(to right, rgba(242, 99, 99, 0.504),rgba(188, 68, 68, 0.488),rgba(243, 244, 245, 0.532));
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.459);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  width: 500px;
  height: 420px;
}

.icons {
  font-size: 50px;
  padding: 30px;
}


/*About page scroll effect*/
.js-scroll {
  opacity: 0;
  transition: opacity 500ms;
}

.js-scroll.scrolled {
  opacity: 1;
}

.scrolled.fade-in {
  animation: fade-in 1s ease-in-out both;
}

.scrolled.fade-in-bottom {
  animation: fade-in-bottom 1s ease-in-out both;
}

.scrolled.slide-left {
  animation: slide-in-left 1s ease-in-out both;
}

.scrolled.slide-right {
  animation: slide-in-right 1s ease-in-out both;
}

/* ----------------------------------------------
   * Generated by Animista on 2021-2-11 23:32:31
   * Licensed under FreeBSD License.
   * See http://animista.net/license for more info. 
   * w: http://animista.net, t: @cssanimista
   * ---------------------------------------------- */

@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

/* Back to Top */
#myb {
	display: none;
	 background-image: url(assets/chevron-up-solid.svg);
	background-size: 25px;
	background-position: center;
	background-repeat: no-repeat;
	position: fixed;
	bottom: 40px;
	right: 40px;
	z-index: 99;
	border: none;
	outline: none;
	background-color: #f382c7;
	color: white;
	cursor: pointer;
	padding: 25px;
	border-radius: 50px;

}

#myb:hover {
	background-color: #f382c84a;
}
 
