/* Profile specific styles */

main {
  padding: 30px 90px;
}

main img {
  width: 300px;
  height: 300px;
  object-fit: cover;
}

.profile-h {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-top: 100px;
  align-items: flex-start;
  min-height: 500px;
}

.image-container {
  flex: 1;
  display: flex;
  justify-content: center;
}

.split-screen {
  width: 5px;
  background-color: #000000;
  margin: 0 30px;
  align-self: stretch;
  border-radius: 5px;
  min-height: 300px;
}

.text-h,
.text-h h2 {
  flex: 2;
}

.text-h h2 {
  font-size: 3rem;
}

.h-profile {
  line-height: 1.8;
  text-align: left;
}

.info-tabs button {
  background-color: #ffffff;
  color: #000000;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;

  border-style: solid;
  border-width: 2px;
  border-color: #000000;
  margin: 40px 0px;
  margin-right: 20px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab.active {
  background-color: #c1ff72;
}

.tab-content ul {
  margin-left: 20px;
}

.interests {
  background-color: #ffffff;
  padding: 20px 20px;
  margin: 40px 0px;
  border: solid;
  border-width: 5px;
  border-radius: 25px;
}

.interests h2 {
  font-size: 3rem;
}

.interests input {
  width: 50%;
  padding: 10px;
  margin: 10px 0;
  border: solid;
  border-width: 2px;
  border-radius: 10px;
  font-size: 18px;
}

.interests button {
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 10px;
  display: inline-block;
  font-size: 18px;
  border: none;
}

.interests img {
  display: none;
}

.bw-filter {
  filter: grayscale(100%);
}

@media (max-width: 768px) {
  .profile-h {
    flex-direction: column;
    align-items: center;
  }

  .split-screen {
    width: 0%;
    min-height: 0px;
    margin: 0px 0px;
  }

  main {
    padding: 30px;
  }

  main h1 {
    position: static;
    margin-bottom: 60px;
  }

  .info-tabs button {
    margin: 20px 0;
  }
}
