*{
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

.wrapper{
display: flex;
flex-direction: column;
justify-content: center;

}
h1{
  margin: 30px 0;
}

.grid-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 300px));
  gap: 60px;
  justify-content: center;
  margin-right: 0px;
  padding-bottom: 100px;
  padding-top: 50px;
  align-items: center;
 
}

.card{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1em;
  border: 1px solid rgb(75, 82, 92);
  border-radius: 10px;
  background-color: #ffffff;
  text-align: center;
  margin: 10px;
  width: min-content;
  color: black;
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.231);

}
.card-image{
 
 background-color: rgb(0, 153, 255);
 height: 300px;
 margin-bottom: 15px;
 background-size: cover;
  width: 300px;
}
@media(max-width:450px){
  .card-image{
    height: 150px;
  width: 150px;
}
.card{
  margin-left: 60px;
}
}
.card button{
  margin-top: 10px;
  font-size: 20px;
  padding: 5px;
  background-color: rgb(37, 88, 117);
  color: white;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
 border-radius: 3px;
}
.card button:hover{
  cursor: pointer;
}
.cardlogo{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
 
} .cardlogo img{
  width: 150px;
}
.card a{
  text-decoration: none;
  color: rgb(69, 6, 6);
}