/* Impot fonts fra Adobe Fonts */
@import url("https://use.typekit.net/iuu7sdm.css");

:root {
    /* Farver */
    --white: #FFFFFF;
    --orange: #F19137;
    --beige: #E0C6AC;
    --brown: #613000;
    --black: #000000;

    /* Font Style */
    --font-header: 'Georgia Bold', serif;
    --font-subheader: 'Calluna Regular', serif;
    --font-body: 'Benton Modern D Cn', serif;

    /* Font Size */
    --font-size-header: 48px;
    --font-size-subheader: 32px;
    --font-size-body: 16px;
}
.body{
    margin: 0;
    padding: 0;
}

/***************************
        Text Styling
***************************/

h1{
    font-family: var(--font-header);
    font-size: var(--font-size-header);
}

h2{
    font-family: var(--font-subheader);
    font-size: var(--font-size-subheader);
}

p, li, a{
    font-family: var(--font-body);
    font-size: var(--font-size-body);
}

/***************************
        B U T T O N S
***************************/

.btn{
    font-family: var(--font-body);
}

.btn-primary {
    color: var(--orange);
    background-color: transparent;
    border: 2px solid var(--orange);
    border-radius: 0px;
    padding: 8px 16px;
}

.btn-primary:hover {
    background-color: var(--orange);
    color: white;
    border: 2px solid #e18733;
}

/****************************
        Links Styling
****************************/
a{
    text-decoration: none;
    color: var(--orange);
}

a:hover{
    color: var(--orange);
}
