@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
}

header {
  background-color: #263238;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  color: #fff;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
header .logo .image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}
header p {
  color: #63b342;
}

header .logo .image img {
  width: 100%;
  height: 100%;
}

header ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
a {
  text-decoration: none;
  color: inherit;
}
header ul li.active a {
  color: #63b342;
}

.main-content {
  background-color: #fac6d3;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-content .content {
  width: 70%;
  height: 100%;
  border-radius: 20px;
  box-shadow: 1px 1px 20px 0px #d1c0c0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/bg.d61091c8.png");
  background-size: cover;
  background-position: 50%;
}
.main-content .content .box {
  text-align: center;
}
.main-content .content .box img.logo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  box-shadow: 1px 1px 20px 0px #808586;
}
.main-content .content .box p.desc {
  font-size: 36px;
  max-width: 59%;
  line-height: 73px;
  text-align: center;
  font-weight: bold;
  margin: 0 auto;
}
.main-content .content .box p.discount-code {
  font-weight: 900;
  letter-spacing: -0.8px;
  text-shadow: rgb(211, 196, 196) 0px 0px 5px, rgb(255, 255, 255) 0px 0px 10px,
    rgb(53, 111, 153) 0px 0px 30px, rgb(255, 255, 255) 0px 0px 40px,
    rgba(62, 56, 206, 0) 2px 2px 2px;
  color: rgb(53, 111, 153);
  font-size: 4rem;
  margin: 20px 0;
  animation: pulse 4s infinite ease-in-out;
}
.main-content .content .box .btns a {
  display: block;
  margin: 0 auto;
  margin-bottom: 30px;
  background: rgb(120, 192, 151);
  width: 180px;
  border-radius: 10000px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.copy-message {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translate(-50%);
  background: #4caf50;
  color: #fff;
  padding: 10px 15px;
  border-radius: 10px;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.5s;
}

p.footer {
  text-align: center;
  margin: 10px;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(110%);
  }
}

@media (max-width: 767px) {
  .main-content .content {
    width: 95%;
  }
}
@media (max-width: 575px) {
  .main-content .content {
    background-size: 80% 80%;
    background-position: 50%;
    background-repeat: no-repeat;
  }
  .main-content .content .box p.desc {
    font-size: 36px;
    max-width: 60%;
    line-height: 53px;
  }
}
