@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

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

.red {
  color: #ff3535;
}

.blue:hover {
  color: #00b4ff;
}

.green:hover {
  color: #97fe01;
}

.purple:hover {
  color: #c300ff;
}

body {
  background: #0e0e0e;
  text-align: center;
  cursor: url("../img/logos/mdcursor.png"), auto;
}

.slide-show img {
  width: auto;
  height: 500px;
}

ul {
  list-style: none;
  align-items: center;
  display: flex;
}

ul li {
  color: white;
  padding: 20px 40px;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
}

.logo {
  width: 80px;
}

#btn-mobile {
  display: none;
}

.logo-mobile {
  display: none;
}

.container-mobile {
  display: none;
}

.home-mobile {
  display: none;
}

.fixed {
  position: sticky;
  width: 100%;
  top: 0;
  background: #0e0e0e;
}

.navbar_container {
  align-items: center;
  margin-left: 50px;
  display: flex;
  justify-content: space-around;
}

.card_shop2 {
  padding: 40px;
  margin: 4rem auto;
  align-items: center;
  width: 960px;
  height: 700px;
  border-radius: 2rem;
  border: 3px solid white;
}

.card_shop2 h1 {
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: white;
  font-size: 40px;
  margin-bottom: 20px;
  font-style: italic;
  animation: changeColor 2s infinite;
  font-family: "Poppins", sans-serif;
}

@-webkit-keyframes changeColor {
  0% {
    color: #ffbc00;
  }
  25% {
    color: #f1af09;
  }
  50% {
    color: #daa520;
  }
  100% {
    color: #c18c07;
  }
}

.container_contact {
  display: flex;
  justify-content: space-around;
}

.github {
  width: 200px;
  padding: 1rem;
  background: #484f58;
  border-color: #484f58 !important;
  border-radius: 10px;
}

.github i {
  font-size: 30px;
  margin-right: 10px;
}

.github a {
  font-family: "Roboto", sans-serif;
  align-items: center;
  display: flex;
}

.twitter {
  width: 200px;
  padding: 1rem;
  background: #1da1f2;
  border-color: #484f58 !important;
  border-radius: 10px;
}

.twitter i {
  font-size: 30px;
  margin-right: 10px;
}

.twitter a {
  font-family: "Roboto", sans-serif;
  align-items: center;
  display: flex;
}

.linkedin {
  width: 200px;
  padding: 1rem;
  background: #4c6ef5;
  border-color: #484f58 !important;
  border-radius: 10px;
}

.linkedin i {
  font-size: 30px;
  margin-right: 10px;
}

.linkedin a {
  font-family: "Roboto", sans-serif;
  align-items: center;
  display: flex;
}

.discord {
  width: 200px;
  padding: 1rem;
  background: #7289da;
  border-color: #484f58 !important;
  border-radius: 10px;
}

.discord i {
  font-size: 30px;
  margin-right: 10px;
}

.discord a {
  font-family: "Roboto", sans-serif;
  align-items: center;
  display: flex;
}

.contributers {
  display: flex;
  justify-content: space-around;
}

.card_shop2 h2 {
  margin-top: 40px;
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 40px;
}

.card_shop2 h2:after {
  content: "";
  display: block;
  width: 90%;
  height: 2px;
  background: white;
  margin: 0 auto 30px;
}

.contributers {
  border-bottom: 2px solid white;
  padding-bottom: 30px;
  width: 90%;
  margin: 0 auto 30px;
}

.contributers2 {
  display: flex;
  justify-content: space-around;
  padding-bottom: 30px;
  width: 90%;
  margin: 0 auto 30px;
}


@media screen and (max-width: 600px) {
.card_shop2 {
  width: 85%;
  height: auto;
}

.card_shop2 h1 {
  font-size: 25px;
}

.card_shop2 h2 {
  font-size: 20px;
}

.twitter, .discord, .linkedin {
 display: none; 
}

  #logo-mobile {
    display: none !important;
  }

  #menu li:nth-child(1) {
    border-top: 1px solid grey;
  }

  #menu li:last-child {
    border-bottom: 1px solid grey;
  }

  #nav ul {
    display: block;
    position: absolute;
    width: 70%;
    top: 0px;
    right: 0px;
    background-color: #101010;
    height: 0;
    transition: 0.6s;
    z-index: 1000;
    visibility: hidden;
    overflow-y: hidden;
  }

  .container-mobile {
    width: 90%;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
  }

  #nav.active #menu {
    height: 100vh;
    visibility: visible;
    overflow-y: hidden;
  }

  .logo-mobile {
    display: flex;
    width: 40px;
    height: 40px;
    margin: 8px 16px;
  }

  .navbar_container {
    display: flex;
    margin: 0;
  }

  .home-mobile {
    display: flex;
  }

  #menu li {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
    margin: 50px 2.3rem;
  }

  #btn-mobile {
    display: flex;
    padding: 0.5rem 1rem;
    border: none;
    background: none;
    cursor: pointer;
    color: #fff;
    gap: 0.5rem;
    z-index: 1100;
  }

  #hamburger {
    border-top: 2px solid;
    width: 20px;
  }

  #hamburger::after,
  #hamburger::before {
    display: block;
    content: "";
    width: 20px;
    height: 2px;
    background: currentColor;
    margin-top: 5px;
    transition: 0.3s;
    position: relative;
  }

  #nav.active #hamburger {
    border-top-color: transparent;
  }

  #nav.active #hamburger::before {
    transform: rotate(135deg);
  }

  #nav.active #hamburger::after {
    transform: rotate(-135deg);
    top: -7px;
  }

  #nav button {
    visibility: visible;
  }

  #nav ul li::after {
    display: none;
  }
}

