:root {
  --primary: #fd9ed0;
  --secondary: #ffb7dd;
  --tertiary: #fdd2e8;
  --quartery: #ffeef7;
}


* {
  padding: 0;
  margin: 0;
}

body {
  width: 100vw;
  height: 100vh;
  background-color: var(--tertiary);
}

.heart-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  #heart {
    height: 25%;


  }

  #heart:active {
    animation: horizontal-shaking 0.1s infinite;
  }

  #valentine {
    position: absolute;
    font-family: 'Monotype Corsiva', 'Apple Chancery', 'ITC Zapf Chancery', 'URW Chancery L', cursive;
    font-size: 5em;
    display: none;
  }

  div {
    z-index: 100;
    width: 10%;
    display: flex;
    justify-content: space-between;
    flex-direction: row;

    button {
      display: none;
      transition: all 0.1s linear;
      background-color: var(--primary);
      border: none;
      color: white;
      padding: 15px 32px;
      text-align: center;
      text-decoration: none;
      font-size: 16px;
      cursor: pointer;
      border-radius: 5px;
    }
  }
}

@keyframes horizontal-shaking {
  0% {
    transform: translate(0, 0)
  }

  25% {
    transform: translate(5px, 5px)
  }

  50% {
    transform: translate(-5px, 5px)
  }

  75% {
    transform: translate(5px, -5px)
  }

  100% {
    transform: translate(0, 0)
  }
}


particle {
  position: fixed;
  pointer-events: none;
  top: 0;
  left: 0;
  opacity: 0;
}