* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}
:root {
  --bg-color: #fff;
  --second-bg-color: #c0c0c0;
  --text-color: #000;
  --main-color: #fff;
}

html {
  font-size: 60%;
  overflow-x: hidden;
  height: 100%;
}

body {
  background: var(--bg-color);
  color: var(--text-color);

  min-height: 100%;

  display: flex;
  flex-direction: column;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 12% 2rem;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;

}

.logo {
  font-size: 3rem;
  color: var(--text-color);
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s ease;

}

.logo:hover {
  transform: scale(1.1);
}

.logo span {
  text-shadow: 0 0 25px var(--main-color);
}

.navbar a {
  font-size: 1.8rem;
  color: var(--text-color);
  margin-left: 4rem;
  font-weight: 500;
  transition: 0.3s ease;
  border-bottom: 3px solid transparent;
}

.navbar a:hover {
  color: var(--main-color);
  border-bottom: 3px solid var(--main-color);
}

.contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15rem;
}

.contact-text {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin-top: 14rem;
}

.footer {
  position: relative;
  bottom: 0;
  width: 100%;
  padding: 25px 10px;
  /* background-color: var(--second-bg-color); */

  margin-top: auto;
}

.footer .copyright {
  font: bold;
  font-family: 'Courier New', monospace;
  margin-right: 15px;
  text-align: right;
  font-size: 11px;
  color: #000;
}

@media(max-width: 895px) {

  .logo {
    font-size: 2.5rem;
  }

  .active1{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 2rem;
  }

  .active2 {
    display: none;
  }

}