/* Alle farverne på siderne gemmes her, så gruppemedlemmerne ikke skal huske farvekoderne */
:root {
    --nipponRed: #BC002D;
    --nipponBlue: #1C3563;
    --nipponBlack: #1E1E1E;
    --nipponGrey: #E3DBDB;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* overflow-x: hidden; */
}

/* Her indlæses vores specielle fonts så man bare kan skrive font-family: *font-navn*, i koden */
@font-face {
    font-family: 'Nuku Nuku';
    src: url('../fonts/nuku1.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'electroharmonix';
    src: url('../fonts/electroharmonix.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    max-width: 100dvw;
    width: auto;
    min-height: 100dvh;
    font-family: Verdana, Tahoma, sans-serif;
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url(../img/baggrund.png);
}

H1 {
    font-family: "Nuku Nuku";
    letter-spacing: 0.2vw;
}

a {
    text-decoration: none;
}

img {
    border-radius: 0.5vw;
}
