* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    font-family: Arial, sans-serif;
    position: relative;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    background-image: url('assets/radionica.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(15px);
    -webkit-filter: blur(15px);
    z-index: 0;
}

.logo {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
    filter: none;
}

.logo img {
    max-width: 150px;
    height: auto;
    display: block;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    filter: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content h1 {
    font-size: 72px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 5px;
    display: block;
}

.content p {
    font-size: 18px;
    letter-spacing: 2px;
    display: block;
    width: 100%;
}

/* Breathing animation za "USKORO IZLAZI" */
.breathing {
    animation: breathe 3s ease-in-out infinite;
    transform-origin: center;
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Typewriter animacija za mali tekst */
.typewriter {
    border-right: 2px solid white;
    white-space: nowrap;
    margin: 0;
    display: block;
    animation: blink-caret 0.75s step-end infinite;
    min-height: 1.2em;
    text-align: center;
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: white;
    }
}

