body {
  background-color: aliceblue;
}
.ht{
    display: grid;
    justify-items:center ;
    padding: 10px;
    background-color: #2ec349;
    border: 1px solid black;
    font-family: 'Courier New', Courier, monospace;
    border-radius: 5px;
    
}

.box{
    justify-self: center;
    border-radius: 5px;
    background-color: wheat;
    border: 1px black solid;
    padding-top: 20px;
    width: 1200px;
}

h1 {
    background-color: aliceblue;

  margin-bottom: 40px;
}

.l{
  display: grid;
  width: 300px;
  padding: 10px;
  height: 350px;
 justify-self:center;
 margin-bottom: 20px;
 border: 1px black solid;
 border-radius: 40px;
 background-color: white;
}

h2 {
  border-radius: 20px;
  font-size: 24px;
  width: 70%;
  margin: auto;
  line-height: 1.8;
}
.back2{
  justify-self: center;
  display: flex;
  margin-top: 20px;
  padding: 10px 15px;
  background: #00df28;
  color: white;
  text-decoration: none;
  border: 1px solid black;
  border-radius: 10px;
  margin-bottom: 10px ;
  transition: all 0.3s;
}
.back2:hover{
    background-color: white ;
    color: #2ec349;
    font-size: 16px;
    margin-bottom: 10px;
}



