body {
    font-family: 'JetBrains Mono', monospace;
    background-image: url('bakgrunn.jpg'); /* Bytt ut hvis du har et bilde */
    background-size: cover;
    background-color: #000000; /* Fallback */
    text-align: center;
    color: #FFFFFF;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 16px; /* Optimal for A54 (~403 PPI) */
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.crypto-item {
    font-size: 18px;
    margin: 10px 0;
}

.buy {
    color: #FFA500; /* Oransje for KJØP!! */
    font-weight: bold;
}

.sell {
    color: #FF0000; /* Rød for SELG!! */
    font-weight: bold;
}

.neutral {
    color: #FFFFFF; /* Nøytral */
}

button {
    padding: 10px 20px;
    margin: 10px;
    font-size: 16px;
    background-color: #333333;
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #555555;
}

form, select, input[type="time"] {
    font-size: 16px;
    margin: 10px 0;
}

@media (max-width: 1080px) {
    body {
        font-size: 14px;
    }
    h1 {
        font-size: 20px;
    }
    .crypto-item {
        font-size: 16px;
    }
}