.full-container {
  background-color: var(--card-bg-color);
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card {
  position: relative;
  width: 100vw;
}

.card-bg {
  height: 200px;
}

.bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-avatar {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 100px;
  z-index: 10;
  width: 100%;
}

.double-border {
  border-radius: 50%;
  border: 0.7rem solid var(--card-bg-color);
  display: flex;
  justify-content: center;
}

.avatar {
  width: 180px;
  height: 180px;
  border: 0.5rem solid white;
  border-radius: 50%;
  object-fit: cover;
}

.added-rounded-div {
  position: absolute;
  top: 180px;
  width: 100%;
  height: 25px;
  border-radius: 800px 800px 0px 0px / 100px 100px 0px 0px;
  background-color: var(--card-bg-color);
}

.profile {
  background-color: var(--card-bg-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 2rem 0;
  padding: 7rem 0 2rem 0;
}

.title {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0 2rem 0;
}

.title > h1 {
  font-size: 2rem;
  padding-bottom: 0.5rem;
}

.title > h2 {
  text-transform: uppercase;
  font-size: 1.1rem;
}

.networks-list {
  /* width: 25px; */
}

.networks {
  /* width: 25px; */
}

.network {
  background-color: white;
  margin: 1rem 0;
  border-radius: 10px;
}

.network-button {
  all: unset;
  width: 100%;
}

.network-link {
  padding: 1rem;
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.network-logo {
  width: 25px;
  height: 25px;
  padding-right: 1rem;
}

.footer {
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .full-container {
    justify-content: center;
    background-color: var(--card-grey);
  }

  .card {
    max-width: 500px;
  }

  .bg-image {
    border-radius: 10px 10px 0 0;
  }

  .profile {
    border-radius: 0 0 10px 10px;
  }
}
