@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,700;1,700&display=swap');

body {
    background-color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    position: relative;
    color: #222;
}

.logo {
    margin-top: 10px;
    max-width: 25%;
    border-radius: 11px;
}

.center {
    text-align: center;
}

.prvi {
    text-align: left;
    margin-top: 70px;
    margin-left: 10px;
    margin-right: 10px;
    font-weight: 600;
    font-size: 30px;
    color: #111;
}

.how-to {
    font-weight: 700;
    font-size: 20px;
    text-align: left;
    margin-bottom: 10px;
    color: #111;
}

ol {
    font-weight: 400;
    font-size: 18px;
    color: #333;
    margin: 0 0 20px 0;
    list-style: none;
    padding: 0;
    max-width: 400px;
    text-align: left;
}

ol li {
    margin-bottom: 8px;
    counter-increment: step-counter;
}

ol li:before {
    content: counter(step-counter) ". ";
}

.center button {
    background-color: #cc0000;
    font-weight: 600;
    color: #ffffff;
    border: none;
    padding: 12px 0;
    border-radius: 25px;
    font-size: 18px;
    width: 100%;
    max-width: 300px;
    cursor: pointer;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.mini {
    text-align: center;
    font-size: 12px;
    font-weight: 200;
    margin-bottom: 50px;
}

a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

hr {
    color: gray;
    border: none;
    height: 1px;
    background-color: #ccc;
}

.box {
    display: block;
    text-align: left;
    padding-left: 10px;
}

/* Responsive container for larger screens */
.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
}

@media screen and (min-width: 1024px) {
    .logo {
        max-width: 200px;
    }

    .prvi {
        font-size: 36px;
    }

    .center button {
        font-size: 20px;
        padding: 14px 0;
    }

    ol {
        font-size: 20px;
    }

    .mini {
        font-size: 14px;
    }
}
