@import url('https://fonts.googleapis.com/css2?family=Londrina+Outline&display=swap');

.body{
    background-color: white;
}


li{
    font-weight: bold;
    font-size: 25px
}

.gradient-background {
    padding: 0;
    margin:0;
    background: linear-gradient(300deg, #8881aa, #dd616d, #ef8172);
    background-size: 180% 180%;
    animation: gradient-animation 18s ease infinite;
    width:100vw;
    height: 200px;

    display:flex;
    justify-content: center;
    align-items: center;
}




@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.text{
    color: white;
    font-weight: bold;
    font-size:100px;
    font-family: "Londrina Outline", sans-serif;
}

.nav{
    color: rgb(219, 115, 119);
    font-size: 25px;
    font-weight: bold;
}

header {
    margin: 0px;
    padding: 0px;
    background-color: rgb(219, 115, 119);
}

#content {
    position: relative;
    display: inline-block;
}
#stamp1, #stamp2{
    position: absolute;
    width: clamp(130px, 12vw, 180px);
    height:auto;
    transition: transform 0.3s ease;
}
#stamp1 {
    top: 0;
    left: 0;
    transform: translate(-100%, 25%) rotate(-30deg);
  }
  
  #stamp2 {
    top: 0;
    right: 0;
    transform: translate(130%, -40%) rotate(20deg);
  }

  .cards{
    display: flex;
    justify-content: center;
  }
  .sta {
    max-width: 200px;
    border: 4px dashed white;
    border-radius: 20px;
    background-color: #ffeef2;
    transform: rotate(-1deg);
    transition: transform 0.2s ease;
    margin: 0 auto;
  }

  .card-title{
    background-color: #8881aa;
  }
  
  
.card-text{
    font-family: 'Courier New', Courier, monospace;
}

.card-type{
    color: #dd616d;
    font-family: 'Courier New', Courier, monospace;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
}

.container-fluid {
    padding: 0 15px;
}

.row {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.flip-card {
    perspective: 1000px;
    width: 300px;
    height: 400px;
}

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

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

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: #ffeef2;
    border: 4px dashed white;
    border-radius: 20px;
}

.flip-card-front img, .flip-card-back img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.card-body {
    padding: 15px;
}

.card-title {
    color: #8881aa;
    margin-bottom: 10px;
}

.card-type {
    color: #dd616d;
    font-family: 'Courier New', Courier, monospace;
    margin-bottom: 10px;
}

.card-text {
    font-family: 'Courier New', Courier, monospace;
    margin-bottom: 10px;
}

.card-footer {
    background-color: transparent;
    border-top: none;
    padding: 10px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.flip-card-back {
    transform: rotateY(180deg);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.flip-card-back h5 {
    color: #dd616d;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 0px;
}

  
.card-image{
    border-radius: 16px;
    margin-top: 0px;
}

.stamp-it{
    margin-top: 5px;
    background-color: #ef8172;
    border: 1cm;
}

#gradient-background2 {
    padding: 0;
    margin:0;
    background: linear-gradient(300deg, #db5c4b, #cd3b4a, #7065a7);
    background-size: 180% 180%;
    animation: gradient-animation 18s ease infinite;
    width: 200px;
    border: 4px solid white;
    color: white;
    font-weight: bold;
    padding: 5px;
    text-align: center;
    margin-top: -50px;
    margin-bottom: 20px;
}