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

body {
  height: 100vh;
  width: 100vw;
  background: url(../assets/background.jpg) center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: black;
  font-style: italic;
  color: darkmagenta;
  z-index: 1000;
}

footer {
  background-color: black;
  color: darkmagenta;
  align-items: flex-end;
  text-align: center;
}

nav {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  transition: all 0.50s ease;
}

nav ul {
  display: flex;
  list-style: none;
}

nav li {
  margin: 0 10px;
}

nav a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: darkmagenta;
  background-color: rgb(0, 0, 0);
  border-radius: 5px;
  transition: background-color 0.4s ease;
}

nav a:hover {
  background-color: rgb(149, 149, 182);
}

article {
  margin-top: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  padding: 20px 40px;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: rgb(47, 1, 47);
  font-family: Arial, sans-serif;
  max-width: 600px;
  width: 90%;
}

.off-screen-menu {
  color: darkmagenta;
  background-color: black;
  height: 100vh;
  width: 100%;
  max-width: 450px;
  position: fixed;
  top: 0;
  right: -450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 3rem;
  transition: .3s ease;
}

.off-screen-menu.active {
  right: 0;
}

.help-menu {
  height: 50px;
  width: 50px;
  margin-left: 50%;
  margin-right: 50%;
  position: relative;
  cursor: pointer;
  transition: .3s ease;
}

.help-menu:hover {
  transform: scale(1.2);
}

.logo {
  height: 50px;
}

#logo2{
  width :2px;
}