@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,900;1,700&display=swap");


/* CSS Variables */
:root {
  --normal-font: 400;
  --bold-font: 600;
  --bolder-font: 900;
  --primary-color: #ffffff;
  --secondary-color: #0014c4;
  --line-height: 1.7rem;
  --transition: 0.4s ease-in;
}

/* Smooth scroll effect */
html {
  scroll-behavior: smooth;
}

/* Resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: var(--transition);
}

 body {
  font-family: "Roboto", sans-serf;
  
    height: 579px;
    background-image: linear-gradient(rgb(86, 83, 255), rgb(0, 0, 0));
    background-repeat: no-repeat;
    background-color: #000000;

   }

ul li {
  list-style-type: none;
}

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

a:hover {
  color: var(--secondary-color);
}



.logo {
  background: rgb(43, 43, 43);
  display: flex;
  
    max-width: 15%;
    height: auto;
  }

nav {
  background: rgb(43, 43, 43);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  box-shadow: 2px 3px 2px #00109e;

  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
}





.hamburger {
  display: none;
}







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

.nav-item {
  margin-left: 2rem;
}

.nav-link {
  font-weight: var(--bold-font)
}







.general {display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.9rem;
  max-width: 1100px;
  margin: 2rem auto -6rem;
}

.description1 {display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.9rem;
  max-width: 3000px;
  
}

.description2 {display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.9rem;
  max-width: 1100px;
  margin: 2rem auto -6rem;
  
}

.description3 {display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.9rem;
  max-width: 3000px;
  
  
}




.intro-image {
  display: flex;
  
    max-width: 60%;
    min-width: 60%;
    height: auto;
  
}
.introcelu {
  display: flex;
  
    max-width: 70%;
    min-width: 60%;
    height: auto;
  
}




.image1 {
  display: flex;
  
    max-width: 100%;
    min-width: 60%;
    height: auto;
  
}

.celu1 {
  display: flex;
  
    max-width: 100%;
    min-width: 60%;
    height: auto;
  
}

.image2 {
  
  display: flex;
  
    max-width: 100%;
    min-width: 60%;
    height: auto;
  
}

.celu2 {
  float: right;
  display: flex;
  
    max-width: 100%;
    min-width: 60%;
    height: auto;
  
}

.image3 {
  display: flex;
  
    max-width: 100%;
    min-width: 60%;
    height: auto;
  
}

.celu3 {
  display: flex;
  
    max-width: 100%;
    min-width: 60%;
    height: auto;
  
}






.intro-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.general p {
  line-height: var(--line-height);
  color: var(--primary-color);
}

.phrase {
  color: var(--primary-color);
}





.btnred {
  margin-top: 1rem;
  display: inline-block;
  padding: 0.8rem 0.6rem;
  border: none;
  font-size: 1.4rem;
  border-radius: 5px;
  color: #ffffff;
  background-color: var(--secondary-color);
  margin-right: 1.5rem;
}

.btnred:hover {
  background-color: #9e0022;
  color: #ffffff;
}


.btnblue {
  margin-top: 1rem;
  display: inline-block;
  padding: 0.8rem 0.6rem;
  border: none;
  font-size: 1.4rem;
  border-radius: 5px;
  color: #13000d;
  background-color: var(--primary-color);
}

.btnblue:hover {
  background-color: #9e0022;
  color: #ffffff;
}







footer {
  border-top: 1px solid rgb(6, 1, 78);
  box-shadow: 0px -2px 3px #03009e;
  text-align: center;
  padding: 2rem;
  color: var(--primary-color);
}








@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
    cursor: pointer;
  }

  ul {
    background-color: #fff;
    flex-direction: column;
    position: fixed;
    left: 100%;
    top: 5rem;
    width: 100%;
    text-align: center;
  }

  ul.active {
    left: 0;
}

.nav-item {
  margin: 2rem 0;
}

.logo {
  font-size: 1.5rem;
}

.general {
  flex-direction: column;
  max-width: 500px;
}

.intro-text h1 {
  font-size: 2.3rem;
}

.btn {
  padding: 0.5rem;
  font-size: 1.2rem;
}

.intro-image {
  max-width: 26rem;
}

}


@media screen and (max-width: 420px) {
  .general {
    max-width: 330px;
  }

  .intro-text h1 {
    font-size: 2rem;
  }

 .intro-image {
    max-width: 330px;
  }
}