@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");

:root {
  --primary-color: #a855f7;
  --primary-color-dark: #9333ea;
  --secondary-color: #ca8a04;
  --text-dark: #00a2ff;
  --text-light: #00ffd5;
  --max-width: 1200px;
  background-image: url(assets/wp12769216-topographic-4k-wallpapers.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

}

h4{
  display: block;
  position: center;
  margin: 0;
  color: white;
  background-color: rgba(35, 33, 33, 0.274);

}
.rose{position: absolute;
place-items: center;
top: 60%;
}.fa-brands {
  padding: 5px; 
  font-size: 2.5em;
  text-decoration: none;
  color: #ffffff;
  place-items: center;

}
.fa-brands:hover {
  opacity: 1;
  text-shadow: 0 0 20px #00fff7,0 0 30px #01eaff ,0 0 50px #14c8e8;
}

#particles-js
{   height: 100vh;
    width: 100%;
    
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
 
}

body {
  
  font-family: "Poppins", sans-serif;

}
nav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}

.nav__content {
  max-width: var(--max-width);
  margin: auto;
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav .logo a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  transition: 0.3s;
}
nav .logo a:hover {
  color: var(--primary-color-dark);
}

nav .checkbox {
  display: none;

}

nav input {
  display: none;
}
nav .checkbox i {
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

ul {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  transition: left 0.3s;
}

ul li a {
  padding: 0.5rem 1rem;
  border: 2px solid transparent;
  text-decoration: none;
  font-weight: 600;
  color: var(--text-dark);
  transition: 0.3s;
}

ul li a:hover {
  border-top-color: var(--secondary-color);
  border-bottom-color: var(--secondary-color);
  color: var(--secondary-color);
}

.section {
  background-color: var(--extra-light);
}

.section__container {
  min-height: 100vh;
  max-width: var(--max-width);
  margin: auto;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.subtitle {
  letter-spacing: 2px;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.title {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 3rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.title span {
  font-weight: 600;
}

.description {
  line-height: 1.5rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 10px;
}




.portfolio {
  color: var(--primary-color);
}

.portfolio:hover {
  background-color: var(--primary-color-dark);
  color: #ffffff;
}

.image {
  display: grid;
  place-items: center;
  filter: drop-shadow(20px 30px 70px rgba(0, 0, 0, 0.719));
}

.image img {
  width: min(27rem, 90%);
  border-radius: 100%;
  filter: grayscale(100%) ;


  }
  span{color: rgb(255, 255, 255);
  filter: drop-shadow(20px 30px 70px rgba(225, 11, 11, 0.719));
  text-shadow: 0 0 20px #00fff7,0 0 30px #01eaff ,0 0 50px #14c8e8;


  }

@media (width < 750px) {
  nav .checkbox {
    display: block;

  
  }
 
  .image img {
    width: min(20rem, 90%);}


  .fa-brands{
      position: static;
      font-size: 25px;
      letter-spacing: 5px;
      text-align: center;
      bottom: 0;

    }


  ul {
    position: absolute;
    width: 100%;
    height: calc(100vh - 85px);
    left: -100%;
    top: 85px;
   
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    background-color: rgba(252, 255, 104, 0.192);
  }

  nav #check:checked ~ ul {
    left: 0;
  }

  ul li a {
    font-size: 1.25rem;
  }

  .section__container {
    padding: 10rem 1rem 5rem 1rem;
    text-align: center;
    grid-template-columns: repeat(1, 1fr);
  }

  .image {
    grid-area: 1/1/2/2;
  }

  .action__btns {
    margin: auto;
  }

  .rose{
    size: 1.5em;
    top: 90%;
    margin-left: 20%;
  }}
  
