* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: white;
  font-family: "Poppins", sans-serif;
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  background-color: rgb(16, 16, 19);
}

a {
  text-decoration: none;
  color: var(--font-color);
}

:root {
  --background-color: rgb(28, 30, 36);
  --font-color: white;
  --font-color-secondary: #999999;
}

#navbar {
  width: min(100%, 220px);
  /* background-color: rgb(28, 30, 36); */
  color: white;
  padding: 20px 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}

#navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#navbar .btn {
  height: 2.3rem;
  color: inherit;
  width: 100%;
  max-width: 120px;
  border: 2px solid;
  border-radius: 40px;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.btn-effect {
  width: 100%;
  position: absolute;
  bottom: -2px;
  transition: all 0.2s linear;
}

.btn:hover .btn-effect {
  bottom: -38px;
}

.btns {
  width: 100%;
  max-width: 120px;
  height: 2.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

#hero {
  width: 100%;
  height: 100vh;
  background: url("Images/wave.webp") no-repeat;
  background-position: center 100%;
  background-size: contain;
  z-index: 1;
}

#hero .container {
  width: 100%;
  min-height: 100%;
}

#hero .content {
  text-align: center;
  margin-bottom: 20px;
}

.top-150 {
  top: 150px;
}

#hero .content > h3 {
  text-transform: uppercase;
  font-size: 1.2rem;
  color: white;
  font-weight: 400;
  letter-spacing: 0.1rem;
  margin-bottom: 30px;
}

#hero .content > h1 {
  font-size: 3.3rem;
  font-weight: 400;
}

#hero .image {
  width: 100%;
}

.image img {
  width: 100%;
}

/* Cards */
.heading {
  color: var(--font-color-secondary);
  font-weight: 300;
  font-size: 2.1rem;
}

.cards {
  margin: 70px 0;
  display: block;
}

.cards h3 {
  font-size: 1.3rem;
  margin: 10px 0 5px;
}

.cards p {
  color: var(--font-color-secondary);
}

.cards img {
  transition: all 0.3s linear;
}

.cards:hover img {
  filter: contrast(1.25);
}

.more-content .btn-footer {
  border: 2px solid white;
  background-color: white;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 170px;
  max-height: 50px;
  margin: auto;
  border-radius: 40px;
  overflow: hidden;

  &:hover div {
    transform: translateY(0);
  }
}

.more-content .btn-footer div {
  transition: all 0.2s linear;
  transform: translateY(-50px);
}

.btn-footer div span {
  color: var(--background-color);
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
}

/* footer */
footer p {
  font-size: 0.9rem;
  color: var(--font-color-secondary);
}

.links {
  color: var(--font-color-secondary);
  transition: all 0.3s linear;
  &:hover {
    color: var(--font-color);
  }
}

@media screen and (max-width = 340px) {
  nav{
    background-color: tomato;
  }
}
