* {
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-decoration: none;
  font-family: "Inter", sans-serif;
}

.front-page {
  width: 100vw;
  height: 100vh;
  display: flex;
}

.container-content {
  width: 50vw;
  background-color: #fdfbff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  padding: 2rem 3rem 3rem 5rem;
}

.logo {
  height: 2rem;
}

.paragraph {
  width: 80%;
}

.subtitle {
  color: #8618dd;
  font-weight: 900;
  font-size: 4rem;
  line-height: 4rem;
  margin-bottom: 1rem;
}

.body {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 2.5rem;
}

.explaination {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.explaination p:not(:last-child) {
  margin-bottom: 1rem;
}

.platforms-images-section {
  margin-top: 1rem;
  width: 80%;
  overflow: scroll;
}

.platforms-image {
  display: inline-block;
  border: solid 0.5px grey;
  border-radius: 12px;
  margin-top: 0.8rem;
  transition: 0.2s;
  padding: 1rem;
}

.platform1 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1rem;
}

.platforms-image:not(:last-child) {
  margin-right: 0.8rem;
}

.platforms-image:hover {
  transform: translateY(-2px);
  box-shadow: 0px 7px 10px rgba(189, 102, 255, 0.2);
}

.container-link {
  background-image: url(bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 50vw;
  height: 100vh;
  background-color: #430077;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.link-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
  padding: 50px 30px 30px 30px;
  box-shadow: 0px 15px 50px rgba(68, 0, 25, 0.1);
  border-radius: 20px;
}

ul {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

li {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  line-height: 2.5rem;
}

.number {
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: solid 0.5px #3f3f3f;
  border-radius: 50%;
  margin-right: 1rem;
}

li:not(:last-child) {
  padding-bottom: 1.5rem;
}

.line-break {
  background-color: #ececec;
  height: 1px;
  width: 100%;
  margin: 2rem 0;
}

.URL-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: solid #a129ff 0.5px;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border-radius: 15px;
  width: 300px;
}

.URL {
  width: 230px;
  -webkit-mask-image: linear-gradient(90deg, #000 80%, transparent);
}

.icon-copy-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(icon-clipboard.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 12px;
  padding: 0.5rem;
  transition: 0.2s;
  border: solid #a129ff;
}

.icon-copy-container:hover {
  background-image: url(icon-clipboard-white.svg);
  background-color: #9000ff;
  transform: translateY(-2px);
  box-shadow: 0px 7px 30px rgba(161, 41, 255, 0.2);
}

.tooltiptext {
  visibility: hidden;
  width: 140px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 122%;
  left: 50%;
  margin-left: -75px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.icon-copy-container:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #a129ff;
  color: white;
  box-shadow: 0px 7px 30px rgba(161, 41, 255, 0.25);
  border-radius: 15px;
  padding: 1.5rem 0;
  width: max-content;
  transition: 0.2s;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  width: 100%;
}

.button:hover {
  background-color: #9000ff;
  transform: translateY(-1px);
  box-shadow: 0px 7px 30px rgba(161, 41, 255, 0.2);
}

.button img {
  margin-right: 1rem;
}

.link {
  color: #a129ff;
  font-weight: 600;
}

.link:hover {
  transition: 0.2s;
  color: #9000ff;
  text-decoration: underline;
}

.transition {
  transition: 0.2s;
}

.hidden {
  opacity: 0;
  height: 0;
  margin-bottom: 0;
  padding: 0;
}

.footer {
  color: white;
  padding: 2rem;
}

.footer a {
  color: white;
  text-decoration: underline;
}
