@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #121421;
  color: #f0f0f0;
  font-family: "poppins", sans-serif;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

section {
  margin: 5px 15px;
  margin-top: 10px;
}

.intro p {
  color: darkgrey;
}

.about p {
  color: lightgrey;
}

.skills ul {
  padding: 0 15px;
  color: lightgrey;
}

.skills ul li {
  margin-bottom: 5px;
}

.projects p {
  color: lightgrey;
}

.projects ul {
  padding: 0 15px;
}

.projects ul li h3{
  color: #f0f0f0;
}

.projects ul li {
  margin-bottom: 15px;
  color: lightgrey;
  list-style: int;
}

.project-img{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px;
}

.netflix-img {
  height: 400px;
  width: 70vw;
}

.contact p {
  color: lightgrey;
}

.contact ul {
  color: lightgrey;
  padding: 0 15px;
}

.contact ul li {
  margin-bottom: 5px;
}

.separator {
  margin: 15px 0;
  border: none;
  height: 1px;
  background: linear-gradient(to right, #4fc3f7, #64ffda);
}

a {
  color: #4fc3f7;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 5px;
}

a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  font-size: 14px;
  color: #888;
  margin: 20px 0;
}

h1,
h2,
h3 {
  margin-bottom: 10px;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

section:hover {
  background-color: #1e1e2e;
  border-radius: 10px;
  transition: 1s ease;
}

@media (min-width: 768px) {
  body {
    font-size: 1.5rem;
    padding: 0px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  section {
    max-width: 900px;
    margin: 30px auto;
  }
  
  .skills ul,
  .projects ul,
  .contact ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 10px 0 0 20px;
    padding-left: 0;
  }
  
  .skills ul li,
  .projects ul li,
  .contact ul li {
    margin: 0;
  }
  
  .netflix-img{
    width: 300px;
    height: 500px;
  }
}