/* Reset some basic styles for consistency */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Set up the body to center the container */
body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 20px;
}

/* The main container */
.container {
  background-color: #fff;
  max-width: 650px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  position: relative;
}

.copy-site {
  position: absolute;
  right: 1rem;
  top: 1rem;
  cursor: pointer;
}

.copy-site:hover path {
  fill: #ff671f;
}

.logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin-bottom: 1rem;
  border-radius: 50%;
  background-color: #ff671f;
}
.title {
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: -0.4px;
  font-size: 20px;
  text-align: center;
  margin-bottom: 1rem;
}

.socials {
  display: flex;
  align-items: center;
  justify-content: center;
}
.socials a {
  text-decoration: none;
  padding: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.socials a img {
  width: 2rem;
  height: 2rem;
}

/* .socials a svg path {
  fill: orange;
} */

/* Container for the links */
.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  gap: 1rem;
}

/* Style for each link */
.links a {
  text-decoration: none;
  height: 64px;
  z-index: 0;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.6);
  color: rgb(255, 255, 255);
  transition: transform 0.3s cubic-bezier(0, 0.2, 0.5, 3);
  box-shadow: rgba(10, 11, 13, 0.08) 0px 2px 4px 0px;
  border-radius: 4px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}

.links a .icon {
  width: 4rem;
  height: 4rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  padding: 0.25rem;
}

.links a .link-label {
  color: white;
  font-weight: 600;
}

.links a .icon svg {
  width: 2.5rem;
  height: 2.5rem;
}

.links a:hover {
  transform: scale(1.03);
}

.links a:hover .link-label {
  color: #ff671f;
}

.links a:hover .icon .cls-1 {
  stroke: #ff671f;
}

.links a:hover .icon .cls-2 {
  fill: #ff671f;
}

.links a .icon.copy {
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
}

.icon.copy svg path {
  fill: white;
}

.icon.copy:hover svg path {
  fill: #ff671f;
}

.icon.shop {
  .cls-1 {
    stroke-width: 1px;
  }
}

.cls-1 {
  fill: transparent;
  stroke: white;
  stroke-miterlimit: 10;
  stroke-width: 2px;
}

.cls-2 {
  fill: white;
}

@media screen and (max-width: 576px) {
  .container {
    padding: 1.5rem 1rem;
  }
  .title {
    font-size: 18px;
  }
  .links a {
    height: 50px;
  }
  .links a .icon {
    width: 3rem;
    height: 3rem;
  }

  .links a .icon.copy {
    width: 2rem;
    height: 2rem;
    margin-right: 1rem;
  }
}
