:root {
  --link-list-bg-color: white;
  --link-list-border-color: rgba(0,0,0,0.5);
  --links-max-width: 500px;
  --link-list-ladventure-color: #dbdaff;
  --link-list-africa-color: rgb(254, 209, 127);
  --link-list-home-color: rgb(252, 204, 210);
  --link-list-special-color: #8580e7;
  --link-news-color-1: rgb(92,103,192);
  --link-news-color-2: rgba(106,198,215,1);
}

#standalone-main {
  z-index: 0;
  box-shadow: none;
}

.link-list-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--link-list-bg-color);
  margin-top: 5vh;
  padding: 2rem;
}

.profile-pic {
  border-radius: 50%;
  width: 7rem;
  height: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.profile-name {
  font-size: 2rem;
  font-weight: 500;
  margin-top: 1rem;
  margin-bottom: 0.6rem;
}

.profession-title {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.links {
  position: relative;
  overflow: hidden;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid var(--link-list-border-color);
  border-radius: 0.6rem;
  background-color: white;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: var(--links-max-width);
  width: 100%;
  min-height: 55px;
  text-align: center;
  text-decoration: none;
  margin-bottom: 1.2rem;
  transition: 0.3s ease;
  cursor: pointer;
}

.links:hover {
  background-color: black;
  color: white;
}

.links.ladventure {
  border: none;
  background-color: var(--link-list-ladventure-color);
}

.links.africa {
  border: none;
  background-color: var(--link-list-africa-color);
}

.links.ladventure:hover,
.links.africa:hover {
  background-color: black;
  border: none;
  color: white;
}

.links.special {
  border: none;
  background-color: var(--link-list-special-color);
  color: white;
}

.links.special:hover {
  background-color: black;
  color: white;
}

#home-link {
  border: none;
  color: black;
  background-color: var(--link-list-home-color);
}

#home-link:hover {
  border: none;
  background-color: black;
  color: white;
}

.link-news {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: var(--links-max-width);
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  background: var(--link-news-color-1);
  background: linear-gradient(101deg, var(--link-news-color-1) 0%, var(--link-news-color-2) 100%);
  margin-bottom: 1.2rem;
  padding-bottom: 30px;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.link-news p {
  color: white;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.link-news a {
  border: 1px solid black;
}
.link-news a:last-child {
  margin-bottom: 0;
}

#link-list-social {
  margin-top: 1.2rem;
}

#standalone-copyright {
  z-index: 0;
  position: static;
}/*# sourceMappingURL=links-style.css.map */