:root {
    --Blå: #0078bf;
    --svart: #000000;
    --guld: #d59f0f;
    --vit: #ffffff;
}
.permanent-marker-regular {
    font-family: "Permanent Marker", serif;
    font-weight: 400;
    font-style: normal;
}

body {
    margin: 0 auto;
    background-color: var(--Blå);
    width: 100%;
    min-height: 100%;
    border-style: solid;
    border-width: 2px;
    border-color: var(--guld);
}
header {
    display: flex;
    justify-content: center;
    background-color: var(--Blå);
    font-size: 30pt;
    font-weight: bold;
    font-style: italic;
    color: var(--vit);
    padding: 20px 50px;
    font-family: "Permanent Marker", serif;
    
}
* {
    font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
    margin: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    justify-content: center;
    padding: 5px 30px;
    background-color: var(--svart);
    border-style: solid;
    border-width: 2px 0px;
    border-color: var(--guld);
    
}
.nav_links {
    list-style: none;
    
}

.nav_links li {
    float: left;
}
.nav_links a {
    color: var(--guld);
    font-weight: bold;
    font-size: 15pt;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    text-align: center;
    padding: 15px 100px;
    box-shadow:-5px 5px 20px ;
}
.nav_links a:hover {
    background-color: var(--svart);
    color: var(--vit);
    transition: all 0.4s ease 0.1s;
    box-shadow:5px 5px 20px ;
}
.nav_links a.active{
    background-color: var(--svart);
    color: var(--vit);
    box-shadow:5px -5px 20px ;
}
main {
    unicode-bidi: isolate;
    background-color: var(--Blå);
    color: var(--vit);
    min-height: 900px;
    
}
p {
    font-size: 15pt;
    padding: 15pt;
}
footer {
    background-color: var(--svart);
    color: var(--guld);
    padding: 20px;
    border-style: solid;
    border-width: 2px 0px;
}
.BildPaolo {
    width: 100%;
}
button {
    background-color: var(--guld);
    border: none;
    border-radius: 25px;
    padding: 10px 10px;
    transition: all 2s ease 1s;
}
button :hover {
    color: var(--vit);
    transition: all 0.9s ease 0.1s;
}
button a {
    color: var(--svart);
    text-decoration: none;
    font-size: 15pt;
    padding: 10px;
}
h2 {
    display: flex;
    justify-content: center;
    font-family: "Permanent Marker", serif;
    padding-left: 10px;
}
.div {
    width: 100%;
    background-color: var(--Blå);
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}
.box {
    margin: 15px;
    padding: 10px;
    width: auto;
    max-width: 600px;
    box-shadow: -1px 0 15px;
}
img {
    width: 100%;
}
a {
    color: var(--vit);
    font-size: 17pt;
}
