body{
    background-image: 
        linear-gradient(rgba(213, 241, 240, 0.9), rgba(244, 223, 188, 0.9)),
        url(https://i.pinimg.com/736x/3c/3f/63/3c3f63301107b93b663dcfaf9499a017.jpg);
    background-size: cover;
    height: 1200px;
}

.bar{
    background-color:  rgba(229, 197, 255, 0.836);
    padding: 30px 5%; 
    display: flex; 
    justify-content: space-evenly;
    border-bottom: 1px solid #323232;  
    font-weight: bold; 
    font-size: 25px;
    border-radius: 10px;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
}
a{
    text-decoration: none;
    color:black;
    font-weight: bold;
    font-family: "Encode Sans Condensed", sans-serif;
}

a:hover{
    text-decoration: underline;
    color: rgb(131, 193, 255);
}
.grid {
  padding: 60px 20px;
  background: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.card{
  background: rgba(255, 255, 255, 0.452);
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.carda{
  background: none;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
}
.cardb{
  background: #c5cae925;
  padding: 40px;
  text-align: left;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  grid-column: span 3;
}
.carda img{
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-radius: 11px;
}
.cardb h2{
  font-size: 70px;
  margin: 0 auto;
  font-family: "Dongle", sans-serif;
}
.cardb p{
  margin: 0;
  font-size: 30px;
  font-family: "Nerko One", cursive;
}