
/* GENERAL */
html {
  scroll-behavior: smooth;
}

body { 
    padding: 0; 
    margin: 0;
    width: 100%;
    height: 100%;
    background-color: black;
}

.align-vertically {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .align-horizontally {
    width: 50%;
    margin: 0 auto;
  }

  .padding {
    padding-top: 5rem;
  }

  /* TEXT */
  .light {
    font-weight: 200;
  }

  .ultra-light {
    font-weight: 100;
  }

  .large-spacing {
    word-spacing: 1rem;
    letter-spacing: 0.5rem;
  }

  hr {
    border-color: white;
  }

  /* .row {
    padding: 0;
  } */

  /* NAV */
/* .navbar.active {
    background: rgb(0, 0, 0);
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
} */

.navbar.active {
  animation: fadeIn 2s forwards;
}

.navbar.notActive {
  animation: fadeOut 2s forwards;
}

@keyframes fadeIn {
  from {background-color:rgba(0, 0, 0, 0);}
  to {background-color:rgba(0, 0, 0, 1);}
}

@keyframes fadeOut {
  from {background-color:rgba(0, 0, 0, 1);}
  to {background-color:rgba(0, 0, 0, 0);}
}


a:hover {
    text-decoration: none;
}

#instagramLink {
  background-image: url(/images/instagram.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 1.5rem;
}

#youTubeLink {
  background-image: url(/images/youtube.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 1.5rem;
}

#mailLink {
  background-image: url(/images/mail_filled.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 1.5rem;
  background-color: black;
  border: none;
}

#LinkedinLink {
  background-image: url(/images/Linkedin.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 1.5rem;
}

/* BANNER */
#banner {
    width: 100%;
    height: 100vh;
    /* padding: 0;
    margin: 0; */
  }
  
  #bannerBackground {
    background-image: url(/images/plane.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    padding: 0;
    margin: 0;
  }
  
  #bannerLogo{
    background-image: url(/images/TimoKurtzDevelop.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }

  /* INPUT */
  .form-control {
    color: black;
  }
  
  textarea {
    resize: none;
  }