*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: white;
    font-size: 62.5%;
}

a{
  text-decoration: none;
  color: white;
}
li{
  list-style-type: none;
  font-size: 3rem;
}

body{
  height: 100vh;
  max-width: 100vw;
  background-color: cadetblue;
  display: flex;
  justify-content: center;
  align-items: center;
}
main{
  width: 40%;
  height: auto;
  padding: 2rem;
  background-color:rgb(23, 38, 39);
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 5rem;
}
.projects-list li{
  border-radius: 1.5rem;
  padding: 1rem;
}
.projects-list{
  overflow-y: scroll;
}

.projects-list li:hover{
  background-color:rgb(4, 75, 83);

}
.projects-list li:active{
  background-color:rgb(4, 75, 83);

}
.projects-list::-webkit-scrollbar {
  width: 8px;
}

.projects-list::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}

.projects-list::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.5);
}


@media (max-width:700px){
  body h1{
    font-size: 2.5rem;
  }
  body p{
    font-size: 2.5rem;
  }
  main{
    width: 60%;
    height: 70vh;
  }
}