* {
  margin: 0;
  box-sizing: border-box;
}
.container-main {
  width: 100%;
  height: 100vh;
}
.navbar {
  width: 100%;
  height: 80px;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0px;
}

.navbar-end {
  padding: 10px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.navbar-end a {
  text-decoration: none;
  color: white;
  font-family: 'Kalam', cursive;
  font-weight: 600;
  font-size: 18px;
  padding: 2px 3px;
}

.navbar-end a:hover {
  /* background-color: rgba(0, 0, 0, 0.8); */
  background-color: rgba(71, 71, 71, 0.9);
  border-radius: 8px;
}

.navbar-start h2 {
  font-family: 'Kalam', cursive;
  font-weight: 700;
  font-size: 36px;
  color: white;
}

@media (max-width: 820px) {
  .navbar {
    width: 100vw;
    height: 70px;
    padding: 0px;
    display: flex;
    flex-direction: column;
  }

  .navbar-start h2 {
    font-weight: 500;
    font-size: 24px;
  }
  .navbar-start {
    display: flex;
    align-items: start;
  }

  .navbar-end {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
  }

  .navbar-end a {
    font-weight: 400;
    font-size: 12px;
  }
}
