#image-display {
  margin: 0;
}

.share-container {
  margin-bottom: 10px;
}

.col2 {
  padding: 0;
}
.wrapper {
  margin: 10px;
  padding: 10px;
}

#footer {
  border-radius: 10px;
  margin: 10px 10px 10px 10px;
}
body {
  padding-bottom: 10px;
}


.actions {
  display: flex;
  max-width: 500px;
  margin: 10px auto 0 auto;
}

.actions .col1, .actions .col2 {
  flex: 1;
}
.share-header {
  font-size: 0.75em;
  margin-bottom: 0;
}
.share-container button, .share-container a.share-button {
  font-size: 17px;
}

.logotext {
  font-weight: bold;
  text-align: center;
  color: rgb(0, 60, 86);
}
.logotext img {
  max-width: 400px;
  margin-top: 10px;
}
@media (max-width: 768px) {

  .logotext img {
    max-width: 100%;
  }
  .footer-column {
    min-height: 0;
  }
  
}






/* Flip card
---------------------------------------------------- */
#display-message {
/*  background: white;*/
  padding: 3em 2em 1em 2em;
  color: black;
/*  min-width: 350px;*/
  min-height: 350px;
  border-radius: 10px;
  margin-left: 10px;
  text-align: center;
  
/*
  overflow: hidden;
  white-space: nowrap;
*/
  opacity: 0; /* Initially hidden */
}
.flipped #display-message {
    animation: fadeIn 2.5s ease-in forwards;
}
/* Keyframes for fade-in */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media only screen and (max-width: 768px) {
  #display-message {
    font-size: 1.4em;
  }
}

#display-message span {
  display: inline-block;
}




.card-container {
  overflow: hidden;
}



.flip-card {
  perspective: 1000px;
/*
  min-width: 350px;
  width: 500px;
*/
  max-width: 500px;
  height: 500px;
  margin: 10px auto 0 auto;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border: 2px solid #ddd;
}

.flip-card-front {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
}

.flip-card-back {
  display: flex;
  align-items: center;
  justify-content: center;
/*  background-color: #f8f8f8;*/
  transform: rotateY(180deg);
  background: white;
/*  height: 500px;*/

}

.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

/* Style for the Open button */
#open-button {
  color: #000;
  border: 1px solid #000;
  padding: 6px 12px;
  margin-right: 8px;
  text-decoration: none;
  font-size: 17px;
  cursor: pointer;
  background: rgb(255, 196, 0);
/*  color: white;*/
}

#open-button:hover {
/*  background-color: #0056b3;*/
}


.flip-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, transparent 50%, rgba(0, 0, 0, 0.1) 50%);
  border-radius: 50%;
  animation: curl 1s ease-in-out infinite alternate;
}

@keyframes curl {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}



