@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-purple-color: #383dcf;
  --secondary-white-color: #fff;
  --black-font-color: #000000;
  --black-background-color: #000000;
  --text-gradient-color: ;
}

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

body {
  background-color: var(--black-background-color);
}

.image {
  width: 65%;
  height: 100%;
  z-index: 0;
  position: absolute;
}

header {
  height: 100vh;
  width: 100vw;
  padding: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 20px;
  position: relative;
}

.nav-container {
  display: flex;
  width: 95vw;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  z-index: 0;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 15vw;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hamburger-icon {
  color: var(--secondary-white-color);
  display: flex;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background: -webkit-linear-gradient(
    180deg,
    #e60c0c 0%,
    #eb2aa4 50%,
    #5e22d5 100%
  );
  align-items: center;
  justify-content: center;
  padding: 0px;
}

p {
  color: var(--secondary-white-color);
}

.text-headings {
  display: block;
}

h1 {
  background: -webkit-linear-gradient(180deg, #37f0d1 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-box {
  background-color: #4719dc;
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 50%;
  top: 50%;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  height: 60vh;
  width: 100vh;
  z-index: 0;
  opacity: 80%;
  border-radius: 28px;
}

i {
  font-size: 25px;
  color: var(--secondary-white-color);
}

p {
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  margin: 35px;
}

.heading-primary {
  font-weight: 800;
  font-family: "Manrope", sans-serif;
  font-size: 40px;
  align-items: center;
  padding-bottom: 20px;
  z-index: 0;
}

.menu {
  display: block;
}

.hamburger-icon:hover {
  cursor: pointer;
  background-color: (--secondary-white-color);
}

.sidebar-open {
  display: none;
}

.sidebar {
  display: flex;
  flex-direction: column;
  height: 90vh;
  width: 30vw;
  background: -webkit-linear-gradient(180deg, #ff0000 0%, #5c5abe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 40px;
  align-items: center;
  justify-content: space-around;
  font-weight: 600;
  padding: 0 70px;
  z-index: 4;
}

.sidebar-container {
  display: flex;
  justify-content: flex-end;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  color: inherit;
}

a:hover {
  cursor: pointer;
  background: -webkit-linear-gradient(
    180deg,
    #ffffff 0%,
    hsl(195, 79%, 50%) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cross {
  font-size: 50px;
  background: -webkit-linear-gradient(180deg, #ff0000 0%, #5c5abe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cross:hover {
  background: -webkit-linear-gradient(
    180deg,
    #ffffff 0%,
    hsl(195, 79%, 50%) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 50px;
  cursor: pointer;
}

.cross {
  font-size: 50px;
  background: -webkit-linear-gradient(180deg, #ff0000 0%, #5c5abe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cross:hover {
  background: -webkit-linear-gradient(
    180deg,
    #ffffff 0%,
    hsl(195, 79%, 50%) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 50px;
  cursor: pointer;
}
