/* Grund */
body {
    margin: 0;
    background-color: #FFFAF0;
    color: #2587A8;
    font-family: Inter, sans-serif;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
}

/* Rubriker */
h1, h2 {
    font-family: Quicksand, sans-serif;
    color: #F4A329;
    text-transform: uppercase;
    font-weight: 700;
}

h1 {
    font-size: 42px;
}

h2 {
    font-size: 30px;
    margin-top: 60px;
}

/* Färgpalett */
.colors {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.color-box {
    text-align: center;
}

.color-dot {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 10px;
}

.beige {
    background-color: #FFFAF0;
    border: 1px solid #ddd;
}

.turquoise {
    background-color: #2587A8;
}

.orange {
    background-color: #F4A329;
}

/* Teckensnitt */
.font-block {
    margin-top: 30px;
}

.font-title {
    font-size: 22px;
    margin-bottom: 5px;
}

.font-sample {
    font-size: 18px;
}

/* Stilblock */
.style-block {
    margin-top: 40px;
}

.style-block ul {
    margin: 10px 0 15px 20px;
}

/* Exempel */
.logo-example {
    font-family: Quicksand, sans-serif;
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    color: #F4A329;
}

.example-h1 {
    font-size: 42px;
}

.example-h2 {
    font-size: 30px;
}

/* Fontklasser */
.quicksand {
    font-family: Quicksand, sans-serif;
}

.inter {
    font-family: Inter, sans-serif;
}
