header {
    position: fixed;
    width: 100%;
    padding: 0 clamp(20px, 15dvw, 200px);
}

.header-wrapper {
    display: flex;
    width: 100%;
    padding: 10px;
    background-color: white;
    border-radius: var(--radius-1);
}

.header-wrapper > nav {
    width: 100%;
}

.guide-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 0;
    gap: 10px;
}

.guide-list > li  {
    display: flex;
    flex: 1 1 fit-content;
    justify-content: center;
    align-items: center;
    list-style: none;
}

.fragment {
    width: 100%;
}

/*SPECIFIC*/
.typography {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 0;
    width: 100%;
}

.typography > li {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 5px 0;
    border-bottom: 2px solid var(--grey-1);
}

.colors {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 0;
    width: 100%;
    gap: 10px;
}

.colors > li {
    display: flex;
    flex-direction: column;
    flex: 1 1 fit-content;
    list-style: none;
}

.square {
    width: 100px;
    height: 70px;
    border-radius: var(--radius-1);
}

.colors > li:nth-of-type(1) > .square {
    background-color: var(--green-1);
}

.colors > li:nth-of-type(2) > .square {
    background-color: var(--green-2);
}

.colors > li:nth-of-type(3) > .square {
    background-color: var(--green-3);
}

.colors > li:nth-of-type(4) > .square {
    background-color: var(--blue-1);
}

.colors > li:nth-of-type(5) > .square {
    background-color: var(--blue-2);
}

.colors > li:nth-of-type(6) > .square {
    background-color: var(--blue-3);
}

.colors > li:nth-of-type(7) > .square {
    background-color: var(--grey-1);
}

.colors > li:nth-of-type(8) > .square {
    background-color: var(--grey-2);
}

.colors > li:nth-of-type(9) > .square {
    background-color: var(--orange-1);
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 0;
    width: 100%;
    gap: 10px;
}

.buttons > li {
    display: flex;
    flex-direction: column;
    flex: 1 1 fit-content;
    list-style: none;
}

.buttons > li:nth-child(1) > a {
    padding: 5px 10px;
    border-radius: var(--radius-1);
    text-align: center;
    color: white;
    background-color: var(--green-2);
    user-select: none;
}

.buttons > li:nth-child(2) > a {
    padding: 5px 10px;
    border-radius: var(--radius-1);
    text-align: center;
    color: white;
    background-color: var(--blue-2);
    user-select: none;
}

.inputs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 0;
    width: 100%;
    gap: 10px;
}

.inputs > li {
    display: flex;
    flex-direction: column;
    flex: 1 1 fit-content;
    list-style: none;
}

/*JAVASCRIPT*/
.tooltip {
    display: none;
    position: absolute;
    pointer-events: none;
    color: white;
    padding: 0 5px;
    border-radius: var(--radius-1);
    background-color: rgba(0, 0, 0, 0.85);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
}