html {
  touch-action: manipulation;
}

html, body {
  margin: 0;
}

body {
  padding: 0;
  height: 100vh;
}

#body-container {
  z-index: 2;
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  padding-bottom: 48px;
}

#photo-app-title{
  font-size: 16px;
  color: #282828;
  z-index: 3;
  margin-top: 12px;
}

.playfair-display {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.photo-styling {
  animation: 0.6s ease-out 0s 1 fadeIn;
	animation-fill-mode: both;
}
.photo-styling:hover {
  cursor: pointer;
}

#upload {
  margin-top: 18px;
}

#notification, #message {
  display: none;
}

#upload img {
  width: 180px;
}
#notification img {
  width: 320px;
}

#message img {
  width: 320px;
}