* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #000;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #f5f5f5;
}

img {
  max-width: 100%;
}

.app {
  background: url(./images/bg-mb.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  height: 100vh;
}

.header {
  min-height: 59px;
  padding: 7px 14px 6.9px 24.508px;
  border-radius: 38.461px;
  background: linear-gradient(180deg, rgba(62, 62, 62, 0.71) 0%, rgba(30, 30, 30, 0.71) 100%);
  box-shadow: 0px 1.494px 1.494px 0px rgba(0, 0, 0, 0.25);
}

.bg-dropdow-menu {
  border-radius: 38.461px;
  background: #3E3E3E;
  box-shadow: 0px 1.494px 1.494px 0px rgba(0, 0, 0, 0.25);
}

.btn {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 85%;
}

@keyframes scaleAnimation {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.btn-animation {
  animation: scaleAnimation 1.5s infinite ease-in-out;
}


.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.active {
  visibility: visible;
  opacity: 1;
}

.popup-content {
  position: relative;
  background: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.popup-content h2 {
  margin-bottom: 10px;
  /* font-size: 2.5rem; */
  font-weight: bold;
  color: red;
}

.popup-content p {
  margin-bottom: 20px;
  /* font-size: 2rem; */
}

.popup-content a {
  background: red;
  padding: 10px 60px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  border-radius: 10px;
}

.popup-content button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: red;
  color: white;
  border: none;
  padding: 7px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 700;
}