* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  background: rgb(142, 219, 255);
  display: flex;
  align-items: center;
  justify-content: center;
}
.container {
  width: 1200px;
  padding: 10%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
}
.card {
  width: 550px;
  min-height: 450px;
  background-color: rgb(255, 255, 255);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 20px 25px 20px rgba(225, 0, 255, 0.25);
  position: relative;
}
.btn-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 1rem;
  position: relative;
}
.btn {
  border: none;
  cursor: pointer;
  padding: 12px 24px;
  border-radius: 10px;
  background: rgb(255, 125, 125);
  font-size: 15px;
  color: white;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.btn:hover {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.65);
}

.modal-content {
  max-width: 700px;
  border: 1px solid rgb(174, 174, 174);
  border-radius: 20px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: rgb(255, 255, 255);
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.45);
}
.hidden {
  display: none;
}
.modal-content .first-row {
  margin-bottom: 1rem;
}
.content {
  padding: 1rem;
  margin-bottom: 1rem;
}
.content p {
  margin: 0.2rem 0;
  padding: 0.2rem;
}

.first-row {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
.first-row span {
  font-size: 40px;
  text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
  margin: 0.5rem;
}
.fa-brands {
  color: rgb(3, 196, 255);
}
.fa-solid {
  color: black;
}
.cross {
  padding: 0.15rem;
  border-radius: 10px;
  margin-right: 1rem;
  border: none;
  font-size: 40px;
  font-weight: 500;
  background: none;
  cursor: pointer;
  transition: all 3s ease;
}
.modal-overlay {
  position: absolute;
  top: 0;
  /* left: 0; */
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
}

.copy-feedback {
  position: absolute;
  color: green;
  right: 5px;
  font-size: 26px;
}

.share-feedback {
  position: absolute;
  color: rgb(0, 195, 255);
  right: 5px;
  font-size: 26px;
}

/* Responsive design */
@media (max-width: 1000px) {
  .cross {
    font-size: 38px;
  }
  .first-row span {
    font-size: 35px;
  }
  .modal-content {
    max-width: 500px;
    padding: 0.5rem;
  }
}

@media (max-width: 768px) {
  .cross {
    font-size: 35px;
  }
  .first-row span {
    font-size: 30px;
  }
  .modal-content {
    max-width: 400px;
    padding: 0.5rem;
  }
}
