@import url('https://fonts.googleapis.com/css2?family=Oswald&family=Roboto:ital@1&display=swap');

body {
  padding: 0;
  margin: 0;
  background-color: black;
}

h1 {
  font-family: 'Oswald', sans-serif;
  color: #F41E82;
  font-size: 168px;
  text-transform: uppercase;
  line-height: 95%;
  margin-top: 0;
}

p {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
}

.container {
  position: relative;
  background-image: url('./images/bg.jpg');
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
}

.product {
  display: none;
  margin: auto;
  position: absolute;
  padding: 100px;
  border-radius: 50px;
  background-color: white;
  width: 60%;
  margin-top: 2rem;
  /* display: flex; */
  flex-direction: row;
}

.description {
  width: 50%;
}

.close {
  position: absolute;
  top: 50px;
  right: 50px;
}

.close:hover {
  cursor: pointer;
}

.image-box {
  padding: 50px;
  margin: 0 auto;
}

.product-img {
  display: block;
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
}

.itemButton {
  position: absolute;
  display: grid;
  place-items: center;
  top: 40px;
  left: 460px;
  width: 150px;
  height: 150px;
  transform-origin: center;
}

.blip {
  border: 4px solid pink;
  /* padding: 5px; */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: blip 1s linear infinite;
}

.circle {
  position: absolute;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  background-color: #F41E82;
}

.itemButton:hover {
  cursor: pointer;
}

@keyframes blip {
  0% {
    height: 30px;
    width: 30px;
    border: 4px solid #F41E82;
    opacity: 1;
  } 
  50% {
    height: 50px;
    width: 50px;
    border: 4px solid #F41E82;
    opacity: .5;
  }
  100% {
    height: 70px;
    width: 70px;
    border: 4px solid #F41E82;
    opacity: .0;
  }
}