body {
  background-color: black;
  position: relative;
}
div {
  background: rgb(34, 32, 32);
  width: 300px;
  height: 500px;
  position: absolute;
  left: 40%;
  margin-top: 5%;
  border-radius: 10px;
}
#name {
  text-align: center;
  color: white;
  margin: auto;
  font-size: large;
}
#UNI {
  text-align: center;
  color: greenyellow;
  margin-top: 6px;
  font-size: small;
}
#job {
  text-align: center;
  color: rgb(182, 168, 168);
  margin-top: 14px;
}
img {
  text-align: center;
  color: white;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-left: 32%;
  margin-top: 5%;
}
#github , #linkedIn , #frontend , #twitter , #instragram {
  text-align: center;
  color: white;
  width: 72%;
  margin-left: 14%;
  margin-top: 12px;
  background: rgb(92, 85, 85);
  padding: 10px;
  border-radius: 7px;
  &:hover {
    background-color: rgb(0, 0, 0);
  }
}
@media (max-width: 600px) {
    div {
        background: rgb(34, 32, 32);
        width: 300px;
        height: 500px;
        position: absolute;
        left: 19%;
        margin-top: 5%;
        border-radius: 10px;
      }
}
@media (min-width: 601Px) and (max-width: 768px) {
    div {
        background: rgb(34, 32, 32);
        width: 300px;
        height: 500px;
        position: absolute;
        left: 28%;
        margin-top: 5%;
        border-radius: 10px;
      }
}
