* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body 
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    overflow: hidden;
    background: url('/images/ZacetnaStran.svg') no-repeat center center/cover;
}

.title 
{
    color: #ffffff;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
}

.subtitle 
{
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
}

.button 
{
    display: block;
    font-weight: 700;
    border-radius: 15px;
    text-decoration: none;
    text-align: center;
    background: #ea2a2a;
    color: #fff;
    font-size: 20px;
    padding: 30px;
    width: 290px;
    margin: 37px auto 0;
    transition: 0.3s;
}

.button:hover 
{
    background: #a20202;
}

@media (max-width: 1300px) 
{
    .title 
    { 
        font-size: 45px; 
        
    }
    .subtitle 
    { 
        font-size: 17px; 
        
    }
    
    .button 
    {
        width: auto;
        min-width: 255px;
        max-width: 94vw;
        font-size: 17px;
        padding: 29.6px 40px;
        margin: 32px auto 0;
    }
}