@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Potta+One&amp;display=swap');

html{
  -webkit-font-smoothing: antialiased;
  -webkit-text-size: 100%;
  min-width: 400px;
  overflow-x: hidden;
  overflow-y: scroll;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
  list-style: none;
}

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

a:hover{
  color: #fbbdcc;
}

body {
  margin: 0;
  padding: 0;
  background-color: #17141d;
  color: white;
  font-family: 'Poppins';
}

body::-webkit-scrollbar {
  width: 1em;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
  background-color: #fbbdcc;
  outline: 1px solid slategrey;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  background-color: rgba(35, 38, 36, 1);
  color: white;
  padding: 1% 2%;
  font-family: 'Potta One'
}

.nav-bar img{
  display: block;
  height: auto;
  width: 100%;
}

.nav-bar-img {
  display: flex;
  margin: auto;
  margin-left: 15px;
  width: 50px;
  height: 50px;
}

.nav-bar-img h1{
  margin: auto;
  padding-left: 1.5rem;
}

.nav-bar-links ul {
  margin: 0;
  padding: 0;
  display: flex;
}

.nav-bar-links li a{
  padding: 1rem;
  display: block;
}

.nav-bar-links li a:hover{
  cursor: pointer;
  color: #fbbdcc;
}

.nav-bar-toggle{
  position: absolute;
  cursor: pointer;
  top: 1.25rem;
  right: 1.25rem;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
}

.nav-bar-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 10px;
}

@media (max-width: 600px) {
  .nav-bar-toggle{
    display: flex;
  }
  .nav-bar-links {
    display: none;
    width: 100%;
  }

  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-bar-links ul {
    width: 100%;
    flex-direction: column;
  }

  .nav-bar-links li {
    text-align: center;
  }

  .nav-bar-links li a {
    padding: .5rem 1rem;
  }

  .nav-bar-links.active {
    display: flex;
  }
}
.overlay {
  position: absolute;
  top: 0px;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: rgba(0,0,0,0.7);
  text-align: center;
}

.overlay-text {
  position: relative;
  top: 10px;
  font-family: 'Poppins';
  font-size: 15px;
}

.preview:hover .overlay{
  opacity: 0.85;
}

/* Footer */

.footer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 70px;
  padding-top: 10px;
  padding-bottom: 10px;
  justify-content: space-between;
  background: #272928;
  font-family: 'Potta One';
}

.footer-information {
  padding: 20px;
  margin: auto;
}

.footer-information p{
  font-family: 'Poppins';
  color: darkgrey;
  font-size: 12px;
}

.footer-links {
  padding: 20px;
  margin: auto;
  font-family: 'Poppins'
}

.footer-links ul{
  padding: 0;
}

.footer-links ul li a{
  text-decoration: none;
  color: white;
}

.footer-links ul li a:hover{
  cursor: pointer;
  color: #fbbdcc;
}

.invite-link {
  position: fixed;
  bottom: 20px;
  left: 20px;
  margin: 0;
  padding: 10px;
  display: flex;
  justify-content: center;
  cursor: pointer;
  border-radius: 10px;
  align-items: center;
  background: #fbbdcc;
  overflow: hidden;
  box-shadow: 20px black;
  transition: transform .5s ease;
}

.invite-link img{
  max-width: 100px;
  height: auto;
}

.invite-link:hover .overlay{
  opacity: 0.85;
}

.invite-text {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  vertical-align: center;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 10px;
  font-family: 'Poppins';
  font-size: 25px;
  color: white;
}

@media (max-width: 1024px){
  .invite-link {
    transform: scale(0);
  }
}
* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}