body {
  background-color: #1e2330;
  text-align: center;
}

.a-color {
  color: #bbb;
}

.a-color:hover {
  color: #fff;
}

.profile-image {
  margin-top: 30px;
  width: 200px;
  height: 200px;
}

.profile-text {
  color: white;
  margin-bottom: 25px;
}

.social-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: auto;
  width: 80%;
}

@media (max-width: 1080px) {
  .social-container {
    width: 100%;
  }
}

.social-div {
  border: 2px solid white;
  border-radius: 25px;
  flex: 1;
  margin: 5px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0);
  overflow: hidden;
  cursor: pointer;
  transition: background-color 0.2s;
}

.social-div p {
  color: white;
  font-size: 28px;
  text-align: center;
  transition: color 0.2s;
}

.social-div:hover {
  background-color: rgba(255, 255, 255, 255);
}

.social-div:hover p {
  color: black;
}
