
@font-face {
    font-family: 'Roboto Condensed';
    src: url('./fonts/RobotoCondensed-Italic-VariableFont_wght') format('truetype');
    font-weight: 100px;
    font-style: italic;
  }
  
  
  @font-face {
    font-family: 'Be Vietnam Pro';
    src: url('./fonts/BeVietnamPro-Bold.ttf') format('truetype');
    font-weight: 200px;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Be Vietnam Pro';
    src: url('./fonts/BeVietnamPro-Black.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
  }
  




  body {
    font-family: 'Be Vietnam Pro', sans-serif;
  }
  


.page{
    display: grid;
    width: 100%;
    grid-template-areas: "a "
                         "b "
                         "c "
                         "d ";
                         
             

    grid-template-columns: 1fr;
    grid-template-rows: 50px 350px 400px 120px;
  
}



.page > header {
    grid-area: a;
    background: linear-gradient(to right, #b7edb8 45%, #8de7ac 55%);
    height: 50px;
    width: 100%;
    
 }





.page > nav {
    grid-area: b;
    background: linear-gradient(to right, #186d15 45%, #0a6329 55%);

    width: 100%;
    
 }


 .page > main {
  grid-area: c;
  background: linear-gradient(to right, #186d15 45%, #0a6329 55%);

  
  
}

.page > footer {
  grid-area: d;
  background: linear-gradient(to right, #b7edb8 45%, #8de7ac 55%);
  text-align: center;
  width: 100%;
  
}


.img{
  padding-left: 40px;
  margin-top: -25px;
 }

 .h1{
    color: aliceblue;
    font-size: 27px;
    padding-left: 20px;
    padding-top: 40px;
    

 }

 .h5 {
  color: aliceblue;
    font-size: 19px;
    padding-left: 20px;
    margin-top: -15px;

 }


 .card1{
 
  background-color: rgb(118, 166, 106);
  border: black 1px solid;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 20px;
  width: 200px;         
  height: 300px; 
  margin-left: 30px;
  margin-top: -40px;
  color: rgb(178, 45, 185);
  font-size: 25px;
  text-shadow: 2px 2px 4px rgba(244, 162, 162, 0.5);
  transition: all 0.3s ease
}

  

  .card1:hover {
    transform: translateY(-8px) scale(1.03);
  }


 .img2{
  display: flex;
  width: 80px;
  height: 80px;
  justify-content: center;   
  align-items: center;
  margin: 0 auto;

 }
 
 .img3{
    width: 25px;
    height: 25px;
    
 }

 .a{
  text-align: center;
  display: block;
 }

 .box1{
  border: 1px solid black;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width: 180px;
  height: 50px;
  background-color: rgb(224, 164, 217);
  margin-top: 40px;
  display: flex;              
  justify-content: center;      
  align-items: center;  
  
 }


 .card2{
 
  background-color: rgb(118, 166, 106);
  border: black 1px solid;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 20px;
  width: 200px;         
  height: 300px; 
  margin-left: 30px;
  margin-top: -40px;
  color: rgb(24, 104, 42);
  font-size: 20px;
  text-shadow: 2px 2px 4px rgba(204, 232, 212, 0.5);
  transition: all 0.3s ease
}

.card2:hover {
  transform: translateY(-8px) scale(1.03);
}


.box2{
  border: 1px solid black;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width: 180px;
  height: 50px;
  background-color: rgb(90, 202, 109);
  margin-top: 40px;
  display: flex;              
  justify-content: center;      
  align-items: center;  
  
 }
