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

body {
  font-family: "Cairo", serif;
}

/* Small */
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

/* Medium */
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

/* Large */
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
/* Start Grand */

.grand {
  width: 100vw;
  background-image: url("My-img/1.jpg");
  background-color: gray;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-attachment: fixed;
  height: 100vh;
  position: relative;
}

.grand::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.600);
  z-index: 1;
}
@media (max-width: 768px) {
  .grand {
    background-image: url("My-img/2.jpg");
    background-size: 100% 100%;
    height: 100vh;
  }
}
.parent {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: white;
  width: 100vw;
  height: 100vh;
}


.com {
  z-index: 10;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
}

.time {
  display: flex;
  justify-content: space-between;
  width: 500px;
  margin: 0 auto;
  z-index: 10;
  font-size: 20px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .time {
    width: 100%;
    max-width: 500px;
    gap: 5px;
      scale: 0.95;
  }
}
span {
  padding: 10px 5px;
  border-bottom: 1px solid white;
}

.time div {
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: 640;
  width: 100px;
  padding: 10px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

@media (max-width: 768px) {
  .time div {
    width: 100px;
    scale: 0.9;
    padding: 5px;
    /* font-weight: 500; */
    font-size: 17px;
  }
}
.love {
  width: 400px;
  color: white;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
    margin-left: 50px;
}
@media (max-width: 768px) {
  .love {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin-left: 0;
  }
}

.love p {
  font-size: 40px;
}

.love img {
  width: 100px;
  height: 130px;
    animation-name: love;
    animation-duration: 0.8s;
    animation-iteration-count: infinite;
  }
@media (max-width: 768px) {
  .love img {
    margin-top: -30px;
  }
}
  
  @keyframes love {
  
    0%,
    100% {
      scale: 1;
    }
  
    60% {
      scale: 1.2;
    }
  
    75% {
      scale: 1;
    }
  
    90% {
      scale: 1.2;
    }
}