
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #d0e3f8;
    color: #333;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


header {
    background-color: #7fb2ff;
    padding: 20px;
    color: white;
    font-size: 2em;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 30px;
}


.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 20px;
    flex-grow: 1;
}


.task-box {
    background-color: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    border: 2px solid #7fb2ff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 500px;
    text-align: center;
}


button {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    background-color: #7fdbff;
    color: white;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    margin-top: 10px;
}


button:hover {
    background-color: #4660f7;
    transform: scale(1.1);
}


button:active {
    transform: scale(1);
}


h1 {
    color: #4da0ff;
    font-size: 1.8em;
    margin-bottom: 15px;
}


p {
    font-size: 1.1em;
    color: #333;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 20px;
}


#sat {
    font-size: 1.5em;
    font-weight: bold;
    color: #7f88ff;
    margin-top: 20px;
}

#ispis {
    font-size: 1.2em;
    color: #9b57f3;
    margin-top: 20px;
}


footer {
    margin-top: auto;
    padding: 20px;
    background-color: #7fb2ff;
    color: white;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
}

footer p {
    margin: 0;
}