* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a{
  color: white;
  text-decoration: none;
}

body {
  background: #1a1a1a;
  color: white;
  font-family: 'Assistant', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.nav-wrapper{
  padding: 20px 0px
}

.nav-list{
  display: flex;
  list-style: none;
}

.nav-list-item{
  padding: 0px 20px;
}

.nav-list-item:hover a{
  color: #F95353;
  text-decoration: underline;
}

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


.small-content{
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.main-heading{
  font-size: 95px;
  line-height: 1;
}

.paragraph{
  color: #DEDEDE;
  font-size: 16px;
  padding: 10px 0px;
  margin-bottom: 20px;
}

.red{
  color:#F95353
}

button{
  padding: 8px 18px;
  background: #F95353;
  border: none;
  border-radius: 42px;
  color: black;
  cursor: pointer;
}

button:hover{
  background: #FF7F7F;
}

#about{
  background: #202020;
  padding: 40px 0px;
  margin-top: 40px;
}

.about-wrapper{
  display: flex;
  justify-content: space-between;
}

.about-heading,
.about-details {
  flex: 1;
  font-size: 16px;
  margin-right: 2%; 
}

.about-heading {
  margin-right: 0; 
}

#university{
  background: #202020;
  padding: 40px 0px;
}

.flex{
  display: flex;
  justify-content: space-between;
}

footer{
  padding: 10px 0px;
  background: #202020;
}

@media screen and (max-width: 600px) {
  .about-wrapper{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }

  .main-heading{
    font-size: 40px;
    line-height: 1;
  }

  .paragraph{
    font-size: 14px;
  }

  #hero{
    flex-direction: column;
  }

  #hero img{
    margin-top: 20px;
  }

  .flex{
    flex-direction: column;
  }

  .nav-list-item{
    padding: 0px 10px;
  }

  .hero-content{
    padding: 50px 0px;;
  }

  img{
    width: 100%;
  }

  .skills{
    flex-direction: column;
  }

  .skills img{
    width: 20%;
  }
  
}

.button {
  padding: 8px 18px;
  background: #f95353;
  border: none;
  border-radius: 42px;
  color: black;
  cursor: pointer;
}

.button:hover {
  background: #ff7f7f;
}

.skills-section{
  padding: 40px 0px;
}

.skills{
  display: flex;
  justify-content: space-between;
}

.skill-item{
  display: flex;
  align-items: center;
  gap: 20px
}

.mb-3{
  margin-bottom: 30px;
}

#contact-section {
  padding: 50px 0px;
  display: flex;
  justify-content: space-between;
}
