p{
    font-family:Georgia, 'Times New Roman', Times, serif;
    font-size: 20px;
}
#zag{
    color:#9c0000;
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin-top: 40px;
    text-align: center;
}
.container {
    display: flex;
    height: auto;
    align-items: flex-start;
    flex-wrap: wrap;
}
.left, .center, .right {
    width: 33%;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
a:link{
    text-decoration: none;
}
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color:white;
    color: #9c0000;
    text-decoration: none;
    width: 60px;
    height: 60px;
    display: block;
    margin: auto;
    padding-left: 30px;
    padding-right: 20px;
}
.btn:hover {
    background-color: #9c0000;
    color: white;
    transition: background-color 0.35s ease;
}
.img{
    margin-bottom: 10px;
    margin-top: 10px;
    max-width: 100%;
    height: auto;
}
i{
    color: #9c0000;
}
.glav{
    color: #9c0000;
    font-size: 30px;
}
thead{
    background-color: #9c0000;
    color: white;
}
.container1{
    width: 100%;
    margin-top: 50px;
    padding: 20px;
    overflow-x: auto;
}
table{
    width: 99%;
    text-align: center;
    border-collapse: collapse;
}
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Media Queries for Responsive Design */
@media screen and (max-width: 1024px) {
    .left, .center, .right {
        width: 50%;
    }
    p {
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {
    .left, .center, .right {
        width: 100%;
    }
    p {
        font-size: 16px;
    }
    .glav {
        font-size: 24px;
    }
    #zag {
        font-size: 24px;
        margin-top: 20px;
    }
    .container {
        padding: 10px;
    }
    .btn {
        width: 50px;
        height: 50px;
        padding-left: 20px;
        padding-right: 15px;
    }
    .container1 {
        padding: 10px;
    }
    table {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    p {
        font-size: 14px;
    }
    .glav {
        font-size: 20px;
    }
    #zag {
        font-size: 20px;
    }
    .btn {
        width: 40px;
        height: 40px;
        padding-left: 15px;
        padding-right: 10px;
    }
    table {
        font-size: 12px;
    }
}