﻿footer {
    display: none;
}

body {
    background: linear-gradient(to bottom, #edb021, #ff9100);
    font-family: Poppins;
}

.aboutus img {
    margin-top: 80px;
    text-align: center;
    padding: 15px;
    background: linear-gradient( #edb021, #ff9100, #d47800);
    height: auto !important;
    object-fit: cover;
    border-radius: 50%;
}

h1 {
    text-align: center;
    font-size: 70px;
    font-family: pacifico;
    margin-bottom: 50px;
    font-weight: 900;
    color: black;
}

p, h3 {
    font-weight: 900;
    text-align: justify;
    margin-right: 10px;
    margin-left: 10px;
}

@media (max-width: 576px) {

    h1 {
        text-align:start;
        font-size:30px;
        margin-bottom:20px;
    }
    h3 {
    text-align:center;
    font-size:30px;
    }

    .aboutus img {
        margin-top: 15px;
        max-height: 400px !important;
    }

}



/* Modal stil */
.modal {
    display: none; /* Sakrij modal po defaultu */
    position: fixed; /* Pozicija fiksna */
    z-index: 1000; /* Iznad ostalog sadržaja */
    left: 0;
    top: 0;
    width: 100%; /* Širina 100% */
    height: 100%; /* Visina 100% */
    overflow: auto; /* Omogućava skrolovanje */
    background-color: rgba(0, 0, 0, 0.7); /* Tamna pozadina */
}

.modal-content {
    vertical-align:middle;
    margin: auto;
    display: block;
    width: 50%; /* Širina slike u modalu */
    max-width: 600px; /* Maksimalna širina */
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer; /* Kursor pokazuje da se može kliknuti */
}

    .close:hover,
    .close:focus {
        text-decoration: none;
        cursor: pointer; /* Kursor pokazuje da se može kliknuti */
    }
