* {
  box-sizing: border-box;
}

html {
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Ubuntu", sans-serif;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

header {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 80px;
  z-index: 10;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  border-bottom: 2px solid #d3d3d3;
  background: #ffdba6;
  background: linear-gradient(180deg, #ffdba6 0%, white 100%);
}
header .logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
header img {
  height: 60px;
  width: 60px;
  margin-right: 10px;
  animation-delay: 1s;
  animation: spin 1s;
}
header h1 {
  font-size: 1.5em;
}
header a {
  text-decoration: none;
  color: #000000;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.navigation {
  width: 302px;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 90px;
  padding-top: 1px;
  padding-bottom: 1px;
  padding-left: 1px;
}
.navigation li {
  width: 100px;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
}
.navigation a {
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
.navigation a:hover {
  font-weight: bold;
}
.navigation .current {
  font-weight: bold;
  border-radius: 90px;
  background-color: #ffdba6;
}

.header-padding {
  height: 80px;
  width: 100%;
}

main {
  scroll-snap-type: y mandatory;
}

.page {
  width: 100vw;
  height: calc(100vh - 80px);
  min-height: 600px;
  scroll-snap-align: start;
  background: #ffdba6;
  background: linear-gradient(180deg, #ffdba6 0%, white 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.canvas {
  background-color: #FFFFFF;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28) inset;
  border-radius: 5px;
  height: 90%;
  width: 90%;
  max-width: 900px;
}

h2 {
  text-align: center;
  text-decoration: underline;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  height: 100%;
  width: 100%;
}

.home {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home .top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
}
.home .github {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 400px;
  text-align: center;
}
.home .github p {
  max-width: 250px;
}
.home .github .logo {
  color: #000000;
  width: 150px;
}
.home .github .svg-inline--fa {
  font-size: 100px;
}
.home .inhouse {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 400px;
  text-align: center;
}
.home .inhouse .fa-heart {
  color: #eda7ff;
}
.home .inhouse p {
  max-width: 250px;
}
.home .inhouse .carousel {
  font-size: 100px;
  position: relative;
  width: 150px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home .inhouse .carousel .svg-inline--fa {
  position: absolute;
  bottom: 0;
  background-color: #ffffff;
}
.home .inhouse .carousel .hide {
  animation-fill-mode: forwards;
  animation-duration: 0.5s;
  animation-name: fade-out;
  opacity: 0;
}
.home .inhouse .carousel .show {
  animation-fill-mode: forwards;
  animation-duration: 0.5s;
  animation-name: fade-in;
  opacity: 1;
}
.home .middle {
  text-align: center;
  max-width: 400px;
  padding-left: 20px;
  padding-right: 20px;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.about {
  background: linear-gradient(0deg, #ffdba6 0%, white 100%);
}
.about p {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 30px;
}

.contact .canvas {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.contact form {
  max-width: 300px;
}
.contact form input, .contact form textarea {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  outline: none;
  padding: 3px 0px 3px 3px;
  margin: 5px 1px 3px 0px;
  border: 1px solid #dddddd;
}
.contact form input:focus, .contact form textarea:focus {
  box-shadow: 0 0 5px #51cbee;
  padding: 3px 0px 3px 3px;
  margin: 5px 1px 3px 0px;
  border: 1px solid #51cbee;
}
.contact form input {
  border: none;
  border-bottom: 1px solid #C1C1C1;
  border-left: 2px solid #C1C1C1;
  width: 49%;
}
.contact form textarea {
  resize: none;
  width: 98.75%;
  height: 200px;
}
.contact form button {
  width: 98.75%;
  border: none;
  background-color: #ffdba6;
  border-radius: 5px;
  height: 30px;
}
.contact .card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.contact .card .top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  text-align: left;
}
.contact .card .bottom {
  width: 150px;
  height: 150px;
  text-align: center;
  border: 2px solid #d3d3d3;
  border-radius: 5px;
  padding: 5px;
  margin-left: 25px;
}
.contact .card .bottom img {
  border-radius: 5px;
  width: 100%;
}

.cookie-footer {
  display: inline-flex;
  align-items: center;
  position: fixed;
  bottom: 0;
  width: 100vw;
  height: 80px;
  z-index: 10;
  background: rgba(25, 25, 25, 0.8);
  padding: 10px;
}
.cookie-footer p {
  color: white;
  min-width: 650px;
}
.cookie-footer button {
  width: 60px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 5px;
  border-radius: 100px;
  border: none;
}
.cookie-footer a {
  color: lightblue;
  width: 80px;
}
.cookie-footer.hide {
  display: none;
}

@media screen and (max-width: 576px) {
  header {
    flex-direction: column;
    align-items: center;
    padding: 0;
    height: 115px;
  }
  header .logo {
    margin: 0;
    margin-top: 5px;
  }

  .navigation {
    margin: 0;
    margin-top: 5px;
  }

  .header-padding {
    height: 115px;
  }

  .page {
    height: calc(100vh - 105px);
  }

  .home .top {
    flex-direction: column;
  }
  .home .github {
    flex-direction: column-reverse;
  }
  .home .inhouse {
    flex-direction: column-reverse;
  }

  .about {
    text-align: center;
  }
  .about .canvas {
    overflow-y: auto;
    overflow-x: hidden;
  }

  .contact .card {
    align-self: center;
    flex-direction: column;
  }
  .contact .card .top p {
    margin-top: -10px;
  }
  .contact .card .bottom {
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  .home .top {
    flex-direction: column;
    height: 100%;
  }

  .cookie-footer {
    flex-direction: column;
    text-align: center;
    height: 160px;
  }
  .cookie-footer a {
    margin-top: 5px;
  }
  .cookie-footer p {
    min-width: 0px;
    max-width: 70vw;
    margin: 0;
    margin-top: 10px;
    margin-bottom: 20px;
  }
  .cookie-footer button {
    margin: 0;
    margin-bottom: 10px;
  }
}
::-webkit-scrollbar {
  width: 16px;
  height: 16px;
}

::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}

::-webkit-scrollbar-thumb {
  background: #ffdba6;
  border: 2px outset #ffffff;
  border-radius: 100px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ffdba6;
}

::-webkit-scrollbar-thumb:active {
  background: #ffdba6;
}

::-webkit-scrollbar-track {
  background: #e6e6e6;
  border: 2px inset #ffffff;
  border-radius: 100px;
}

::-webkit-scrollbar-track:hover {
  background: #dedede;
}

::-webkit-scrollbar-track:active {
  background: #ffffff;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

/*# sourceMappingURL=style.css.map */
