body{
  margin: 0;
  color: white
}

main{
  height: 780px;
  background-color: #000;
}

.profileName{
  font-size: 20px;
}

.content{
  display: block;
  width: 60%;
  margin-left: 20%;
  margin-right: 20%;
}

.avatar{
  width: 50%;
  margin-left: 25%;
  margin-right: 25%;
  text-align: center;
  padding-top: 15px;
}

.profilePic{
  border-radius: 50%;
  width: 25%;
}


.links{
  display: inline;
}

.link{
  color:white;
  height: 60px;
  float: left;
  border-radius: 15px;
  width: 70%;
  margin-left: 15%;
  margin-right: 15%;
  margin-top: 30px;
  display: inline;
  text-decoration: none;  
  font-family: 'Roboto',sans-serif;
  font-weight: 400;
}

.link div{
  float: left;
}

.linkIcon{
  margin:5% 0 0 5%;
}

.linkName{
  width: 100%;
  height: 80%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

@media(max-width: 1000px){

  main{
    height: 2000px;
  }

  .profileName{
    font-size: 50px;
    margin-top:40px;
  }

  .content{
    width: 100%;
    margin: 0;
  }

  .avatar{
    width: 100%;
    margin: 0;
  }

  .profilePic{
    width: 40%;
  }

  .linkIcon{
    width: 140%;
    margin:35% 0 0 30%;
  }

  .linkName{
    margin-top: 6%;
    font-size: 50px;
  }
  .link{
    width: 94%;
    height: 170px;
    margin-left: 3%;
    margin-right: 3%;
    margin-top: 8%;
  }
}