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


html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}


a {
  text-decoration: none;
}

input,
a,
button,
li {
  all: unset;
  font: inherit;
}

button {
  border: 0;
  outline: none;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

.navbar {
  height: 90px;
  background-color: hsl(0, 0%, 1%);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
}


.menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.menu-links {
  display: flex;
  gap: 24px;
  border-right: 1px solid white;
  padding-inline: 24px;
}


.menu-links a {
  font-weight: 500;
  color: white;
  padding: 8px 16px;
}

.menu-links a:hover {
  color: palevioletred;
}

button.log-in {
  font-weight: 500;
  padding: 12px 22px;
  background-color: transparent;
  color: white !important;
  border-radius: 10px;
  border: 2px solid palevioletred;
  transition: 0.2s;
}

button.log-in:hover {
  background-color: palevioletred;
  color: white !important;
}

.menu-btn {
  font-size: 32px;
  color: white;
  display: none;
  cursor: pointer;
}

@media screen and (max-width:1100px) {
  .menu-links a {
    font-size: .75rem;
  }
}

@media screen and (max-width:1000px) {
  .menu-links a {
    font-size: .5rem;
  }
}

@media screen and (max-width:1100px) {
  .menu button {
    font-size: .75rem;
  }
}

@media screen and (max-width:1000px) {
  .menu button {
    font-size: .5rem;
  }
}


@media (max-width: 53rem) {
  .menu {
    display: none;
  }

  .menu-btn {
    display: block;
  }
}


@media (max-width: 53rem) {
  .menu {
    display: none;
  }

  .menu-btn {
    display: block;
  }
}

.modal {
  display: none;
  position: fixed;
  position: -webkit-sticky;
  right: 20px;
  margin-right: 5px;
  z-index: 11;
  background-color: black;
  width: 30vw;
  /* height: 25vh; */
  opacity: 0;
  top: 90px;
  border-radius: 0 0 20px 20px;
  animation: opacity 0.5s;
}

.mb-header {
  display: flex;
  color: white;
  flex-direction: column;
  font-size: 1.5rem;
  gap: 25px;
  margin-top: 10px;
  align-items: center;
  font-weight: 200;
}

.show-modal {
  display: block;
  opacity: 0.7;
}




footer {
  position: relative;
  clear: both;
  height: 100%;
  width: 100%;
  background-color: lightgrey;

}

input,
a,
button,
li {
  all: unset;
  font: inherit;
}

a,
button {
  cursor: pointer;
}

footer {
  padding: 3.5rem clamp(3rem, 6vw, 14rem);
}

.footer-wrapper {
  max-width: 90rem;
  margin: 0 auto;
}

.footer-section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
}


.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(3rem, 4vw, 7rem);
}

.footer-nav>div>h3 {
  font-size: 1.25rem;
}

.footer-nav>div>ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0px;
}

.footer-nav>div li {
  font-size: 1rem;
  font-weight: 700;
  transition: opacity 200ms ease;
}

.yt:hover {
  color: red;
}
.fb:hover {
  color: blue;
}
.ws:hover {
  color: green;
}
.insta:hover {
  background-image: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
  background-clip: text;
  -webkit-background-clip: text;
  border-inline-color: transparent;
  transition: background-position 0.3s ease; 
}


.footer-copyright {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
  margin-top: 5rem;
  font-weight: 800;
  justify-content: center;
}