/*
  profile.css | Dylan | 301294233 | 09/30/2023
*/
.profile {
  background-color: var(--primary);
  display: flex;
  flex-direction: column;
  width: 50vw;
  gap: 30px;
  color: white;
  padding: 0 3em;
}

.profile>.picture {
  margin: 0 auto;
}

.profile img {
  border: solid 10px white;
  border-radius: 100%;
  height: 250px;
  width: 250px;
}

.profile>.info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.profile>.about {
  background-color: var(--secondary);
  border-radius: 5px;
  padding: 15px;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.profile>.about>a {
  background-color: var(--primary);
  padding: 2px 10px;
  border-radius: 5px;
  font-weight: 600;
  color: var(--secondary);
  text-align: center;
}

@media (max-width: 768px) {
  .profile {
    width: 90vw;
    padding: 0;
  }

  .profile>.about {
    width: auto;
  }

  .profile>.about > p {
    font-size: 14px;
  }

  .profile>.about>a {
    font-size: 15px;
  }
}