@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e3f2fd;
}

.container {
  position: relative;
  background-image: url(Fotograflar/bg.png);
  background-size: cover;
  background-color: #fff;
  padding: 25px;
  border-radius: 25px;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

@keyframes start {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

header,
.logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 48px;
}

h5 {
  color: white;
  margin-left: 10px;
  font-size: 24px;
  font-weight: 400;
}

header .chip {
  width: 50px;
}

.card-details {
  margin-top: 40px;
}

.number span,
.number h3 {
  color: white;
}

.number span {
  margin-bottom: 5px;
}

.number h3 {
  font-weight: 500;
}

.name h3 {
  color: white;
  margin-top: 30px;
  font-weight: 400;
}

.valid-thru {
  position: relative;
}

.valid-thru h4 {
  color: white;
  position: absolute;
  font-weight: 400;
  right: 40px;
  bottom: 10px;
}

.valid-thru span {
  color: white;
  position: absolute;
  right: 10px;
  bottom: 30px;
}

.borc {
  animation: borc 5s ease infinite;
  color: white;
}

@keyframes borc {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
