body {  
   background-color: #e0f7fa;  
   color: #004d40;  
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;  
}  

.froge-dash {  
   display: grid;  
   grid-template-columns: repeat(5, 1fr);  
   gap: 20px;  
   padding: 10px;  
}  

.froge-card {  
   background-color: #ffffff;  
   border: 2px solid #004d40;  
   border-radius: 8px;  
   padding: 20px;  
   box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);  
   transition: transform 0.3s ease;  
}  

.froge-card:hover {  
   transform: translateY(-5px) scale(1.05);  
}  

.froge-title {  
   font-size: 24px;  
   font-weight: bold;  
   margin-bottom: 10px;  
}  

.froge-text {  
   font-size: 16px;  
   line-height: 1.6;  
}  

.froge-link {  
   color: #00796b;  
   text-decoration: none;  
   font-weight: bold;  
}  

.froge-link:hover {  
   text-decoration: underline;  
}  

.btn-froge {  
   display: inline-block;  
   background-color: #00796b;  
   color: #ffffff;  
   padding: 10px 20px;  
   border-radius: 20px;  
   text-decoration: none;  
   font-size: 16px;  
   transition: background-color 0.3s ease;  
}  

.btn-froge:hover {  
   background-color: #004d40;  
}  

@media (max-width: 768px) {  
   .froge-dash {  
      grid-template-columns: 1fr;  
   }  
}  