@import url('https://fonts.googleapis.com/css2?family=Macondo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lugrasimo&display=swap');
*{
  margin: 0;
  padding: 0;
}
header{
  height: 70px;
  box-shadow: 0 0 20px rgb(72, 71, 71);
}
body {
  background: linear-gradient(#000000, #734a03)
}

nav{
  height: 50px;
  font-family: "Macondo", cursive;
  font-weight: 400;
  font-style: normal;
}

nav ul{
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
}
nav a{
  text-decoration: none;
  color: white;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 20px 20px ;
}
.first , img{
  margin-right: auto;
  display: flex;
  justify-content: flex-start;
  padding: 8px;
}
nav li a:hover{
  color: rgb(126, 65, 9);
  text-shadow: 0 0 5px rgb(126, 65, 9);
  transition: 150ms;
  background-color: transparent;
}

img {
  cursor: pointer;
}

h1 {
  font-family: "Lugrasimo", cursive;
  font-weight: 400;
  font-style: normal;
  color: rgb(196, 98, 0)  ;
  text-shadow: 0 0 80px;
  padding: 0;
  margin: 0;
}

p {
  font-style: inherit;
  font-size: 19px;
  color: rgb(255, 255, 255);
  font-weight: 400;
  font-family: "Macondo", cursive;
}

.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 20px;
}

.card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 70%;
  max-width: 1200px;
  background-color: rgba(255, 255, 255, 0.142);
  backdrop-filter: blur(15px);
  border-radius: 40px;
  box-shadow: 0 0 40px rgba(109, 107, 107, 0.444);
  padding: 40px;
  margin-top: 20px;
}

.produit {
  width: 300px;
  height: auto;
  margin: 0;
  flex-shrink: 0;
  transition: transform 0.5s;
}

.produit:hover {
  transform: scale(1.05);
}

.card-content {
  flex: 1;
  text-align: left;
}

.til {
  text-align: center;
  margin-bottom: 20px;
  font-size: 3em;
}

.text {
  text-align: justify;
  margin: 0;
  line-height: 1.6;
}

.prise {
  width: 100%;
  text-align: center;
  font-size: 40px;
  color: rgb(188, 122, 8);
  margin: 20px 0;
  font-weight: bold;
}

.buy {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgb(255, 255, 255);
  width: 150px;
  display: block;
  margin: 0 auto;
  padding: 12px;
  margin-top: 30px;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

.buy:hover {
  background-color: #ffffff;
  color: rgb(1, 1, 1);
  box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
}

h2{
  color: white;
  padding: 0 0 30px 0;
}

.buy a {
  text-decoration: none;
  color: inherit;
  font-weight: bold;
  font-size: 16px;
}

footer{
  text-align: center;
  /* height: 50px; */
  box-shadow: 0 0 20px rgb(52, 51, 51);
  padding: 20px;
}

@media (max-width: 900px) {
  .card {
    flex-direction: column;
    width: 90%;
  }
  
  .produit {
    width: 200px;
    margin-bottom: 20px;
  }
  
  nav ul span {
    margin-left: 0;
  }
  }
 @media screen and (max-width: 768px) {
	.card {
		flex-direction: column;
		width: 90%;
		text-align: center;
		padding: 20px;
	}
	.info-text {
		text-align: center;
	}
	.produit {
		width: 200px;
		margin-bottom: 20px;
		}
		
}