* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-style: normal;
}
#integrated-terminal {
    background-color: #28282F; /* Change to your desired background color */
    border-radius: 15px; /* Adjust the value to make it more or less rounded */
    padding: 20px; /* Optional: Add padding for better spacing */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow for better visibility */
    margin: 20px; /* Optional: Add margin to separate it from other content */
}
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: 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;
  opacity: 0; /* Initially hidden */
  transition: opacity 1s ease-in-out;
}

.images-container img.fade-in {
  opacity: 1; /* Fade in */
}

.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 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 20px;
  max-width: 600px;
  position: relative;
  flex-direction: column; /* Ensure paragraphs are stacked vertically */
}

.text-container p {
  margin: 0; /* Reset default margins */
  padding: 10px 0; /* Add space between paragraphs */
}

.text-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: #ffffff; /* Change to desired color */
  border-radius: 15px; /* Adjust for more or less rounding */
  z-index: -1;
  padding: 20px; /* Adjust padding as needed */
  transition: box-shadow 0.3s ease; /* Add transition for smooth effect */
}

.text-container:hover::before {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adjust shadow as needed */
}
.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);
}

.buy-it-on-container {
  background-color: #fff; /* Change as needed */
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  margin: 40px 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.buy-it-on-container h2 {
  font-family: 'Changa One', sans-serif; /* Ensure this matches your existing font */
  font-size: 24px;
  margin-bottom: 20px;
}

.exchange-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  justify-content: center;
}

.logo-container {
  width: 195px; /* Adjust size as needed */
  height: 100px; /* Adjust size as needed */
  background-color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo-container img {
  max-width: 80%;
  max-height: 300%;
}
.logo-container2 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 40px;
  padding-top: 40px;
}

.logo-container2 img {
  width: 350px;
  object-fit: cover;
}
@media (max-width: 500px) {
  .images-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 {
    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;
  }
  .buy-it-on-container {
    background-color: #fff; /* Change as needed */
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-width: 350px;
  }
  .buy-it-on-container h2 {
    font-family: 'Changa One', sans-serif; /* Ensure this matches your existing font */
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .exchange-logos {
    display: grid;
    grid-template-columns: 1fr; /* Makes each logo occupy a full row */
    gap: 10px;
    justify-content: center;
  }
  
  .logo-container {
    width: 200px; /* Adjust size as needed */
    height: 150px; /* Adjust size as needed */
    background-color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .logo-container img {
    max-width: 100%;
    max-height: 100%;
  }

}