* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* border: solid yellow 5px; */
  /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; */
  font-family: "Quantico", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #e578bc 0%, #667eea 100%);

  color: white;
  padding: 50px;


}

header {
  /* border: dashed white 1px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: -30px;
}

.explanation {
  /* border: solid white 1px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70%;
  margin-bottom: 40px;
  text-align: center;
  line-height: 2.5em;
  background: rgba(236, 180, 229, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}

.explanation:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: #667eea;
  font-size: large;
}

.logo {
  font-size: 3rem;
  margin-bottom: 10px;
  
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color:#f3d7f0;
}

.tagline {
  margin-bottom: 50px;
  font-size: 1.2rem;
}

.options {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  width: 400px;
  text-align: center;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: #667eea;
  font-size: large;
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.card h2 {
  margin-bottom: 10px;
  /* font-size: 1.5rem; */
}

/* .card p {
  font-size: 0.95rem;
} */

.badge {
  display: inline-block;
  background: #667eea;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  margin-top: 15px;
}

footer {
  margin-top: 20px;
  color: #eecece;
  font-size: 0.9rem;
  font-size: medium;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  padding: 20px;
}

footer:hover {
  transform: translateY(-5px);
  /* background: rgba(255, 255, 255, 0.1); */
  border-color: #667eea;
  font-size: x-large;
}

.fr{
  color:#e7afe0;
}

.en{
  color:#1b37c4;
}

#home{
  color: #eecece;
 text-decoration:none;
font-size:1.5rem;
 transition: all 0.3s ease;
 border: 1px solid transparent;
 display: inline-block;
 padding: 5px 10px;
 border-radius: 8px;

}

#home:hover{

      transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);

  border-color: #eecece;

}



#specs-link{
  text-decoration:none;
   transition: all 0.3s ease;
}

#specs-link:hover{
    transform: translateY(-5px);
  /* background: rgba(255, 255, 255, 0.1); */
  border-color: #667eea;
  font-size: x-large;
}

#specs-container{
  /* border: pink solid; */
  display:flex;
  flex-direction:row;

  justify-content: space-between;

  
}

#french-specs, #english-specs{
  width:45%;
}


/* Responsive Design */
@media (max-width: 1024px) {
  .card {
    width: 45%;
    min-width: 300px;
  }
}

@media (max-width: 768px) {
  body {
    padding: 20px;
  }

  .explanation {
    width: 90%;
    line-height: 2em;
  }

  .card {
    width: 100%;
    padding: 20px;
  }

  h1 {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1rem;
  }

  .logo {
    font-size: 2.5rem;
  }

  .options {
    gap: 20px;
  }
}