*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    margin: 0;

    font-family: sans-serif;

    color: var(--color-text);

    background: var(--color-background);

    line-height: var(--line-height-normal);

}



/* img {
    max-width: 100%;
    display: block;
} */


.btn {
    padding: 0.8rem 2rem;
    /* border: 1px solid white; */
    border-radius: 2px;

}

.navigationBtn {
    
    /* border: 1px solid white; */
    border-radius: 2px;
    list-style: none;
    text-decoration: none;
    font-size: clamp(0.75rem, 1vw, 1rem);
    padding: clamp(0.8rem, 1.2vw, 1rem) clamp(1rem, 2vw, 2rem);

}

.btn-primary {
    background-color: #f55b14;
    color: white;
}

.btn-secondary {
    background-color: #0f1934;
    color: white;
}



a {
    text-decoration: none;
    color: inherit;
}

li {
    text-decoration: none;
    list-style: none;
}

.rowflex {
    display: flex;


}

.center {
    justify-content: center;
    align-items: center;
}

.start {
    align-items: flex-start;
    justify-content: flex-start;

}

.colflex {
    display: flex;
    flex-direction: column;

}

button,
input,
textarea {
    font: inherit;
}