                        * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-image: url('pozadi.webp');
    background-size: cover;
    background-position: center;
    color: #333;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

header {
    background-color: rgba(230, 242, 255, 0.6);
    color: rgb(0, 62, 128);
    padding: 20px;
    text-align: center;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

p {
    font-size: 1.2em;
}

a {
    color: rgb(0, 99, 204);
    text-decoration: none;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.logo {
    width: 150px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }

    p {
        font-size: 1.1em;
    }

    .logo {
        width: 120px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
    }

    .logo {
        width: 100px;
    }
}
