<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html body {
    padding: 0;
    margin: 0;
}

header {
    background-color: #00465a;
    height: 70px;
    padding-left: 12px;
    margin-bottom: 30px;
}

header&gt;img {
    margin-top: 5px;
    height: 55px;
}

.flexContainer {
    display: flex;
    width: calc(100vw - 60px);
    margin-left: 30px;

    gap: 30px;
    flex-direction: column;
    justify-content: center;
    flex: 1 100%;
}

/* Anpassa utseendet pÃĨ knapparna */
.myButton {
    display: block;
    height: 67px;
    flex-grow: 4;
    padding: 20px;
    background-color: rgb(74, 74, 74);
    border-bottom-color: rgb(140, 137, 141);
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

.myButton:hover {
    background-color: #0056b3; /* Anpassa hover-fÃĪrgen */
}

.myButton:active {
    background-color: #003f80; /* Anpassa klick-fÃĪrgen */
}

@media (min-width: 600px) {
    .flexContainer {flex-direction: row;}
}
</pre></body></html>