@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300&family=Poppins&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: ; */
}

@keyframes move {
  from {
    padding-left: 60px;
  }
  to {
    padding-left: auto;
  }
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 100;
  }
}
:root {
  --span-color: #1ed760;
  --text-color: #827e82;
  --dark-gray: #2c2c2c;
  --background-color: #000000;
  --heading-color: #ffffff;
  --heading--font: "Poppins", sans-serif;
  --text-font: "Nunito", sans-serif;
  --footer-color: #0e0e0e;
}
/* For Chrome, Edge, and Safari */

/* For Firefox */


.bg {
  width: 100vw;
  height: 100vh;
  background-color: var(--background-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 50px;
}
span {
  color: var(--span-color);
}
.w_left > h2 {
  font-family: var(--heading--font);
  font-size: 2.8rem;
  letter-spacing: 2px;
  border-left: var(--span-color) solid 2px;
  padding: 8px 15px;
  color: var(--heading-color);
  animation: move 1.1s ease-in-out 0s;
}
.w_right {
  /* border: green solid; */
  width: fit-content;
  height: 55vh;
  display: grid;
  grid-template-rows: repeat(2);
  grid-template-columns: repeat(2, 1fr);
  column-gap: 10px;
  row-gap: 10px;
  overflow-y: scroll;
  scrollbar-width: none;
}

.w_right::-webkit-scrollbar {
  display: none;
}

.project {
  width: 400px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 20px;
  background-color: #292929;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
  animation: fade 1.9s ease-in-out 0s;
  transition: all 0.4s ease-in-out;
}
.text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: var(--text-font);
  color: var(--heading-color);
  font-size: 1rem;
}
.titleArea > p {
  font-size: 0.8rem;
  color: var(--text-color);
  margin-top: 5px;
}
.iconBox {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--dark-gray);
}
.linklogo > a {
  text-decoration: none;
  color: var(--span-color);
  font-size: 1.3rem;
}
.project:hover {
  background-color: #212121;
  /* box-shadow: rgb(85, 91, 255) 0px 0px 0px 3px, rgb(31, 193, 27) 0px 0px 0px 6px, rgb(255, 217, 19) 0px 0px 0px 9px, rgb(255, 156, 85) 0px 0px 0px 12px, rgb(255, 85, 85) 0px 0px 0px 15px; */
}

/* ------------------for mobile------------ */
@media screen and (max-width: 600px) {
  .bg {
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
    padding: 0px 0px;
    overflow: hidden;
  }
  .w_left > h2 {
    margin-left: 50px;
  }
  .w_right {
    /* background-color: yellow; */
    width: 100vw;
    height: 70vh;
    grid-template-rows: repeat(1);
    grid-template-columns:none;
    row-gap: 15px;
    column-gap: 0px;
    justify-items: center;
    padding: 0px 10px;
    margin-top: 0px;
    overflow-y: scroll;
  }
  .project {
    width: 100%;
    height: 90px;
  }
}
