html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    overscroll-behavior-y: contain;
}

.heart {
    position: relative;
    margin-top: 40px;
    height: 40px;
    width: 40px;
    background-color: #e0dcd4;
    /* background-color: red; */
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-animation: heartBeat 1.5s ease-in-out infinite;
    -moz-animation: heartBeat 1.5s ease-in-out infinite;
    -ms-animation: heartBeat 1.5s ease-in-out infinite;
    animation: heartBeat 1.5s ease-in-out infinite;
}

.heart:before {
    position: absolute;
    content: '';
    height: 40px;
    width: 40px;
    background-color: #e0dcd4;
    border-radius: 2em;
    left: -50%;
}

.heart:after {
    position: absolute;
    content: '';
    height: 40px;
    width: 40px;
    background-color: #e0dcd4;
    border-radius: 2em;
    top: -50%;
}

@keyframes heartBeat {
    0% {
        -webkit-transform: rotate(45deg) scale(1);
        -moz-transform: rotate(45deg) scale(1);
        -ms-transform: rotate(45deg) scale(1);
        transform: rotate(45deg) scale(1);
    }
    40% {
        -webkit-transform: rotate(45deg) scale(1.2);
        -moz-transform: rotate(45deg) scale(1.2);
        -ms-transform: rotate(45deg) scale(1.2);
        transform: rotate(45deg) scale(1.2);
    }
}

/* .update-available {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%, -50%);
  margin: 0 auto;
} */

span.update-text {
  display: inline-flex;
  align-items: center;
  /* border: 1px solid aqua; */
}

.unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#version {
  position: absolute;
  bottom: 1%;
  right: 2%;
}

#version-small {
  font-size: 1em;
}