* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-style: normal;
}

body {
  background-color: #f2ede1;
}

a {
  text-decoration: none;
  color: inherit;
}

.images-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding-bottom: 40px;
}

.images-container img {
  width: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portrait-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding-bottom: 40px;
  padding-top: 40px;
}

.portrait-container img {
  width: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portrait-container img:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.images-container img:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 40px;
  padding-top: 40px;
}

.logo-container img {
  width: 350px;
  object-fit: cover;
}

.text-container {
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 20px;
  max-width: 600px;
}

.content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.copy-container {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  padding: 16px 24px;
  margin-top: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.copy-container:hover {
  background-color: #f9f9f9;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.copy-container svg {
  margin-right: 10px;
}

.copy-container span {
  font-size: 16px;
}

.links-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 50px;
  padding-bottom: 40px;
}

.link-button {
  width: 60px;
  height: 60px;
  border-radius: 50px;
  background: #ca506f;
  align-items: center;
  display: flex;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.link-button:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.link-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
}

.link-logo {
  display: block;
  margin: auto;
  width: 28px;
  height: 28px;
}

.button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: auto;
  max-width: 400px;
  border-radius: 10px;
  margin: auto;
  background-color: #ca506f;
  color: #ffffff;
  cursor: pointer;
  padding: 0 40px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

@media (max-width: 500px) {
  .images-container img {
    width: 120px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .portrait-container img {
    width: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .text-container {
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 16px;
    max-width: 350px;
  }

  .copy-container span {
    font-size: 12px;
  }

  .copy-container {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 16px 24px;
    margin-top: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }

  .button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: auto;
    max-width: 400px;
    border-radius: 10px;
    margin: auto;
    background-color: #ca506f;
    color: #ffffff;
    cursor: pointer;
    padding: 0 30px;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .link-button {
    width: 48px;
    height: 48px;
    border-radius: 50px;
    background: #ca506f;
    align-items: center;
    display: flex;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .link-logo {
    display: block;
    margin: auto;
    width: 22px;
    height: 22px;
  }
}
