body{
    display:flex;
    margin:0;
    padding:0;
    min-height: 100vh;
    background-color: #424242;
    justify-content: center;
    align-items: center;
    font-family: arial;
  }
  .vertical-heading-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 40%;
    padding-left: 80px; /* Adjust padding as needed */
    padding-right: 10%;
    background-color: #100a0a; /* Adjust background color */
  }
  h1 {
  position: relative;
  margin-right: 20%;
  margin-bottom: 45px;
  font-family: "Oswald", sans-serif;
  font-size: 44px;
  text-transform: uppercase;
  color: #f1ecec;
  text-align: center;
}
.back-button {
    position: absolute;
    top: 70px;
    right: 20px;
    background-color: #596674;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 15px;
    cursor: pointer;
    width: 80px; /* Adjust width as needed */

  }

  
  .container{
    width: 1000px;
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap:wrap;
    
  }
  
  .container .card{
    position: relative;
  }
  
  .container .card .face{
    width:300px;
    height: 200px;
    transition:.4s;
    
  }
  
  .container .card .face.face1{
    position: relative;
    background: #c1a37d;
    display: flex;
    justify-content: center;
    align-content:center;
    align-items: center;
    z-index: 1;
    transform: translateY(100px);
    border-radius: 0%;
  }
  
  .container .card:hover .face.face1 {
    transform: translateY(0);
    box-shadow:
      inset 0 0 0 whitesmoke,
      inset 20px 10px 80px rgb(228, 116, 3),
      inset -20px 10px 80px rgb(228, 116, 3),
      inset 20px 10px 300px rgb(228, 116, 3),
      inset -20px 10px 300px rgb(228, 116, 3),
      0 0 0px #e9a403,
      -10px 0 80px rgb(228, 116, 3),
      10px 0 80px #ae5630; /* Replaced yellow with #ae5639 */
}

  
  .container .card .face.face1 .content{
    opacity: .2;
    transition:  0.5s;
    text-align: center;
    
     
    
    
   
  
  }
  
  .container .card:hover .face.face1 .content{
    opacity: 1;
   
  }
  
  .container .card .face.face1 .content i{
    font-size: 3em;
    color: rgb(36, 33, 33);
    display: inline-block;
     
  }
  
  .container .card .face.face1 .content h3{
    font-size: 1em;
    color: rgb(37, 30, 30);
    text-align: center;
    
  
  }
  
  .container .card .face.face1 .content a{
     transition: .5s;
  }
  
  .container .card .face.face2{
    padding: 20px;
    position: relative;
    background: #cfbda8;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    box-shadow: 0 20px 50px rgba(0,0,0,.8);
    transform: translateY(-100px);
  }
  
  .container .card:hover .face.face2{
      transform: translateY(0);
  
  
  }
  
  .container .card .face.face2 .content p, a{
    font-size: 10pt;
    margin: 0 ;
    padding: 0;
    color:#333;
  }
  
  .container .card .face.face2 .content a{
    text-decoration:none;
    color: black;
    box-sizing: border-box;
    outline : 1px dashed #333;
    padding: 10px;
    margin: 15px 0 0;
    display: inline-block;
  }
  
  .container .card .face.face2 .content a:hover{
    background: #333 ;
    color: whitesmoke; 
    box-shadow: inset 0px 0px 10px rgba(0,0,0,0.5);
  }

    .back-button {
      position: fixed;
      top: 20px;
      left: 20px;
      color: #333;
      text-decoration: none;
    }
    .back-button:hover {
        transform: translateY(0);
        box-shadow:
          inset 0 0 60px whitesmoke,
          inset 20px 0 80px rgb(228, 116, 3),
          inset -20px 0 80px rgb(228, 116, 3),
          inset 20px 0 300px rgb(228, 116, 3),
          inset -20px 0 300px rgb(228, 116, 3),
          0 0 50px rgb(228, 116, 3),
          -10px 0 80px rgb(228, 116, 3),
          10px 0 80px rgb(228, 116, 3);
      }
    .back-button i {
      margin-right: 5px;
    }
