* {
  margin: 0;
  padding: 0;
}

body {
  padding: 0 5vw;
}

:root {
  --mainFont: 'Avenir';
  --buttonColor: #00ABAE;
  --subFont: 'Roboto';
  --desFont: #575757;
}

nav {
  font-family: var(--subFont);
  display: flex;
  justify-content: space-between;
  width: 100%;
  /* margin-top: 1.5vw; */
}

nav .menu {
  display: flex;
  width: 60%;
  justify-content: space-between;
  align-items: center;
  font-size:25px;

}

nav a {
  text-decoration: none;
  color: #000;
}

nav .menu a:hover {
  border-bottom: 1px solid var(--buttonColor);
}

nav h1 span {
  color: var(--buttonColor);
}

main {
  font-family: var(--mainFont);
  display: flex;
  margin-top: 50px;
}

main h1 {
  font-weight: normal;
  font-size :50px;
  width:200%;
  margin-top: 18%;
  
}

main img {
  border-radius: 50%;
  width: 60%;
  border: 10px solid var(--buttonColor);
  filter: drop-shadow(0px 0px 6px #000);
  float:right;
}

main .left{
  display: flex;
  flex-direction: column;
  padding: 5% 0%;
}
main .left span {
  padding-top: 5%;
  inline-size: 80%;
}

main .left .social-button {
  /* padding-top: 5%;
  display: flex;
  width: 30%;
  justify-content: space-around; */
  
}

main button {
    border: 0;
    padding: 2% 1%;
    background: var(--buttonColor);
    color: white;
    border-radius: 10px;
    width: 30%;
    margin-top: 10%;
    margin-right: 3%;

}

section .do h1, .do-2 h1, .container .description h4 {
  padding: 5% 0;
  font-family: var(--subFont);
}

section .para {
  display: flex;
  font-family: var(--subFont);
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  font-size: 20px;
}

section .para .para-1, .para-2, .para-3 {
  width: 30%;
}

section .skills, h1 {
  padding: 5% 0;
  font-family: var(--subFont);
  width: 100%;
}

section .logos {
  display: grid;
  justify-content: space-between;
  grid-template-columns: repeat(auto-fit, 100px);
  grid-row-gap: 10%;
  align-items: center;
}

section .logos img {
  width: 80px;
  height: 50px;
}

section .container {
  display: flex;
  width: 100%;
  align-items: center;
  padding-bottom: 4%;
}

section .container .description {
  width: 40%;
  color: var(--desFont);
  font-size: 20px;
  margin-left: 10%;
}
section .container .description h4 {
  width:50%;
  
}

section .container .media {
  width: 50%;
} 

section .container .media img {
  width: 100%;
  border-radius: 10px;
}

section .container .description p span {
  font-weight: bold;
  font-size:20px;
}

section .container .description span.cred {
  display: flex;
  flex-direction: column;
  padding: 5% 0;
  font-weight: normal;
  line-height: 20px;

}

section .container .description button {
  border: none;
  padding: 2.5%;
  background: var(--buttonColor);
  color: white;
  border-radius: 5px;
}

section .container .description .des-buttons {
  margin-bottom: 5%;
}

section .container .media {
  position: relative;
}

section .container .media .play {
  position: absolute;
  z-index: 1;
  width: 78%;
  left: 11%;
  background-color: rgba(0 0 0 / 34%);
  padding: 2%;
  bottom: 1%;
  border-radius: 10px;
}

section .bottom {
  text-align: center;
  font-family: var(--subFont);
}

section .bottom h1 {
  padding: 3% 0%;
}

footer {
  text-align: center;
  padding: 4%;
  font-family: var(--subFont);
}

footer img {
  margin-top: 3%;
  margin-bottom: 2%;
}

@media screen and (max-width: 800px) {
  section .do .para {
      display: flex;
      flex-direction: column;
      align-items: center;

  }
  section .para .para-1, .para-2, .para-3 {
      width: 100%;
  }
  main {
      display: flex;
      flex-direction: column-reverse;
  }
  nav .menu {
      width: 70%;
      gap:5%
  }
  main .left span {
      inline-size: 100%;
  }
  section .container {
      display: flex;
      flex-direction: column;
  }
  section .container .media {
      width: 100%;
  }
  section .container .description {
      width: 100%;
  }
}
h2{
  width:200%;
  font-weight: normal;
  font-size :35px;

}
