@import url('https://fonts.googleapis.com/css2?family=Amatic+SC&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arsenal:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alegreya+SC:wght@400;500;700&family=Kurale&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alegreya+SC:wght@400;500;700&family=Yanone+Kaffeesatz:wght@300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Serif&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

:root {
  --second-color: gold;
}

body {
  margin: 0;
  padding: 0;
  background-color: #f0f5ff;
  
}

#cards {
  display: flex;
  overflow-x: auto;
  margin-top: -250px;
}

#card {
  position: relative;
  
  overflow-y: auto;

  min-width: 70vw;
  min-height: 20vh;

  height: 30vh;
}

/* Hide scrollbar for Chrome, Safari and Opera */
#card::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
#card, #cards {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

#card #header {
  position: relative;
  user-select: none;
  
  top: 20px;
  width: 100%;
  
  border-radius: 15px;
  width: calc(100% - 14px * 2);
  height: calc(100% - 14px * 2);
  margin: 14px;
  
  box-shadow: 0px 0px 6px rgba(0,0,0,0.7);
  
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.card-menu #header {
  background-image: url("Images/pic1.jpg");
}

.card0 #header {
  background-image: url("Images/pic2.jpg");
}

.card1 #header {
  background-image: url("Images/pic3.jpg");
}

#card #header #title {
  position: absolute;
  top: 70%;
  left: 35%;
  transform: translate(-50%, -50%);
  
   text-shadow:  
    -1px -1px 0 white,  
     1px -1px 0 white,  
    -1px  1px 0 white,  
     1px  1px 0 white;
  
  
  
  text-align: left;
  font-size: 23pt;
  color: black;

  font-family: 'Yanone Kaffeesatz', sans-serif;
}

#card #header #title #swipe{
   font-size: 9pt;
   position: absolute;
   top:80%;

   }


#card #header #number {
  position: absolute;
  bottom: 8px;
  right: 15px;
  
  text-align: center;
  font-size: 17pt;
  color: white;
  font-family: 'Arsenal', serif;
  text-shadow: 2px 2px 1px rgba(0,0,0,0.5);
}

#card #content {
  position: relative;
  width: 100%;
  
  background: white;
  border-radius: 15px 15px 0 0;
  
  color: rgba(0,0,0,0.85);
  font-size: 14.5pt;
  font-family: 'PT Serif', serif;
  word-wrap: break-word;
}

#card #content #container {
  height: content;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 21px 15px 21px;
}

#card #content #container #subtitle{
   color: black;
   font-size: 13pt;
   background: #00aeef;
  
}

#card #content #container #blue{
    color: #00aeef;
    text-shadow:  
    -1px -1px 0 black;  
     1px -1px 0 black;
    -1px  1px 0 black; 
     1px  1px 0 black;
    }



#card #content img {
  width: 100%;

  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
}

#card #content h1, h2, h3 {
  text-align: center;
  margin-top: 40px;
}

#card #content ol {
}

#card #content a {
  text-decoration: none;
  background: rgba(230, 107, 255, 0.3);
  color: rgba(0,0,0,0.8);
  
  border-radius: 6px;
  padding-left: 6px;
  padding-right: 6px;
  transition: background 0.3s, color 0.3s;
}

#card #content a:hover {
  text-decoration: none;
  background: rgba(252, 93, 237, 0.4);
  color: rgba(0,0,0,0.9);
  
  border-radius: 6px;
  padding-left: 6px;
  padding-right: 6px;
}

#card #content iframe div {
  opacity: 0;
}

#card #content #travel-flight {
  display: flex;
  width: 100%;
  height: 80px;
  
  justify-content: space-around;
  align-items: center;
  
  box-shadow: 0 0 1px black;
  border-radius: 9px;
  
  font-size: 13pt;
  font-family: 'Roboto', sans-serif;
}

#card #content #travel-flight #logo {
  width: 30px;
  height: 100%;
}

#card #content #travel-flight #logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

#card #content #travel-flight #container {
  display: flex;
  
  flex-direction: column;
  justify-content: center;
  
  height: 100%;
  margin: 0;
  padding: 0;
}

#card #content #travel-flight .weak {
  color: rgb(66,66,66);
}


@media (min-width: 1024px) {
  #cards {
    justify-content: center; /* Center the cards */
    overflow-x: hidden; /* Prevent horizontal scrolling */
  }

  #card {
    min-width: 300px; /* Set a fixed width for desktop */
    max-width: 400px;
    height: 60vh; /* Adjust height */
    margin: 20px; /* Add spacing */
  }
  
}


}
