:root {
  --font: "Prodcut Sans", "Product Sans", sans-serif;
}

body {
  background: linear-gradient(30deg, #e95950, #bc2a8d, #fccc63, #8a3ab9);
  background-size: 450% 450%;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.theme-light {
  --color-main: #fff;
  --color-text: #fff;
}

.lang-bar {
  gap: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.lang-bar div {
  width: 30px;
  padding: 3px;
  height: 20px;
  cursor: pointer;
  border-radius: 5px;
}
.lang-bar div img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.active {
  background-color: white;
}

#Photo {
  width: 200px;
  height: 100px;
  display: block;
  margin: 8px auto 13px;
  border-radius: 25%;
  opacity: 0;
}

#Name {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: block;
  font-family: "Product Sans";
  width: 100%;
  text-align: center;
}

#title {
  width: 100%;
  color: #fff;
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-top: 50px;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  font-family: var(--font);
}

#linksbutton {
  width: auto;
  display: block;
  max-width: 580px;
  margin: 27px auto;
}

.links {
  padding: 17px;
  display: block;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 8px;
  text-decoration: none;
  color: var(--color-text);
  font-family: var(--font);
  border: solid var(--color-main) 2px;
  background-color: rgba(255, 255, 255, 0);
  transition: all 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99);
  display: grid;
  gap: 10px;
  grid-template-columns: calc(50% - 20px) 50%;
  align-items: center;
}
.links i {
  justify-self: flex-end;
}

.links:hover {
  background-color: #fff;
  color: #000;
  border: solid var(--color-main) 2px;
}

/*# sourceMappingURL=style.css.map */
