.content {
    margin-top: 40px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
}

.content p {
    margin-bottom: 20px;
    font-size: 1.4rem;
}

h1 {
    font-size: 3rem;
    color: #0056b3; /* Plava boja za naslov */
    margin-bottom: 20px;
}


nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

nav li {
    display: inline-block;
}

.link-box {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    color: #fff;
    background-color: #0056b3;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 3px solid #0056b3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.link-box:hover, .link-box:focus {
    background-color: #003d73;
    color: #fff;
    transform: scale(1.1);
}
a{
    
    font-size: larger;
    color: rgb(0, 0, 0);
    text-decoration: none;
}
a:hover{
    color: #0056b3; 
}