.grid-2{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  padding: 10%;
}
body{
  font-family: sans-serif;
  color: #7A7C80;
  background-color: #101214;
}
h2{
  color: #fff;
}
a{
  color: #7A7C80;
  text-decoration: none;
}

/* section 1 */
.section-1{
  margin: auto;
  text-align: center;
}
.section-1 p{
  font-size: 1.1rem;
  padding-bottom: 10px;
  margin:0;
}
.section-1 h2{
  font-size: 1.7rem;
  margin-bottom: 10px;
}
.section-1 a{
  font-size: 1.5rem;
  padding: 10px;
}
.section-1 img {
  border-radius: 50%;
  width: 40%;
  height: auto;
}

/* section 2 */
.section-2{
  width: 70%;
}
.section-2 h2{
  font-size: 1.7rem;
  margin-bottom: 10px;
}
.section-2 p{
  font-size: 1.1rem;
  padding-bottom: 10px;
  margin:0;
}
.section-2 ul{
  padding-left: 30px;
}

/* animations / utilities */
.section-1 a:hover{
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}
.section-2 a:hover{
  font-size: 1.3rem;
  color: #fff;
  cursor: pointer;
  transition: 0.2s;
}

/* media queres */
@media(max-width:900px){
  .grid-2{
    grid-template-columns: 1fr;
  }
  .section-2{
    margin: auto;
  }
}
