/* ================================
   home.css
================================= */

.navigation-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
  
.nav-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #39a2db;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}
  
.nav-button:hover {
    background-color: #2d85b8;
}