* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
    /* overflow: hidden;when contentent increses => only then show scrollbar */
  scrollbar-width: none; /* Firefox */
  user-select: none;
  flex-wrap: wrap;
}

#container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
body {
  min-height: 100vh;
  width: 100vw;
  background: #151120;
}
#container {
  height: 100vh;
  width: 100vw;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
  color: rgb(203, 203, 203);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
nav {
  display: flex;
}
nav ul {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem;
  justify-content: space-around;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
li {
  color: antiquewhite;
  list-style: none;
  cursor: pointer;
  font-size: 1.5em;
  letter-spacing: 0.2rem;
  transition: 0.2s;
}
li:hover {
  color: rgb(191, 54, 255);
}
a {
  position: relative;
}
a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 3px;
  background: rgb(18, 34, 255);
  bottom: 0;
  left: 0;
}
a:hover::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background: rgb(191, 54, 255);
  box-shadow: 0 0 10px rgb(191, 54, 255), 0 0 20px blue;
  border-radius: 11px;
  bottom: 0;
  left: 0;
  transition: 0.2s ease-in;
}
a {
  text-decoration: none;
}

h1 {
  word-spacing: 0.5rem;
  letter-spacing: 0.5rem;
  font-size: 50px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.hero-image {
  position: relative;
  height: 24.4vw;
  width: 24.4vw;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transform: scale(1.2);
  overflow: hidden;
}
.hero-image::after,
.hero-image::before {
  content: "";
  position: absolute;
  height: 25vw;
  width: 15vw;
  z-index: -1;
  background:#7cf03d;
  /* background: #4a198a; */
  transform: rotate(45deg);

  animation: rotate 7s linear infinite;

}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.img {
  position: absolute;
  height: 15vw;
  width: 12.5vw;
  border-radius: 50%;
  transform: scale(1.6);
  margin-left: 2vh;
}
.img-container {
  position: absolute;
  height: 15vw;
  width: 15vw;
  border-radius: 50%;
  transform: scale(1.6);
  background: #151120;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.portfolio {
  font-size: 3em;
  margin: auto;
  font-weight: 900;
  color: #cecece;
}
span {
  color: rgb(0, 129, 146);
}
.hero-discription {
  width: 100%;
  display: flex;
  justify-content: space-around;
  padding: 6vh;
}

.intro h2 {
    margin-top: 1vh;
  font-size: 30px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 0.1rem;
}
.intro p {
    margin-top: 1vh;
padding: 1vh;
color: rgb(113, 113, 113);
font-size: 20px;
}
.profession {
  color: #a73434;
}
.skillContainer{
    height: 100vh;
    width: 100%;
    display: flex;
      flex-wrap: wrap;
}
.skillContainer img{
    height: 30vh;
    width: 33.3%;
    margin-top: 3%;
}
.ContactsContainer{
  height: 100%;
display: flex;
width: 100%;
flex-direction: column;
flex-wrap: wrap;
 justify-content: center;
align-items: center;
}
.btn{
  color:rgb(19, 10, 19);
  background: #54239f;
  padding:2vh;
  border: none;
  border-radius: 11px;
  margin: 2vh;
transition: .2s ease-in;
}
.btn:hover{
    box-shadow: 0 0 10px #54239f,
  0 0 20px #54239f;
  transform: scale(1.3);
}
.media{
  margin-top:1vh;
  font-size: 35px;
  color: #218c8e;
}
.media:hover{
  color: #54239f;
}
.cta-container {
  display: flex;
  align-items: center;  
  gap: .2rem;
  flex-wrap: wrap;         
}
