*{
  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;
  padding-bottom: 50px;
  padding-top: 10px;
  align-items: center;
  
}
 
 @media(max-width: 710px){
    .grid-container{
      margin-right: 0px;
   }
  }

.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: 250px;
  width: 250px;
}
.card{
  margin-left: 0px;
}
}
.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);
}

.enter{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
}
.enterbuttons{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
  padding: 5px;
  font-weight: 600;
  width: auto;
  margin-bottom: 50px;
}
.enterbuttons button{
  text-decoration: none;
  padding: 10px;
  font-weight: 600;
  width: 250px;
  border-radius: 10px;
}
.enterbuttons a button:hover{
  background-color: rgb(215, 75, 19);
  color: azure;
  cursor: pointer;
}
.enterbuttons a{
  margin: 10px;
  text-decoration: none;
}
.enterbuttons:hover{
 cursor: pointer;
}
.enterbuttons a{
 text-decoration: none;
}