* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'kooky-cloud';
    src: url(/fonts/kookyCloud/Hello-KookyCloud.otf);
}

@font-face {
    font-family: 'bahnschrift';
    src: url(/fonts/BAHNSCHRIFT.TTF);
}

:root {
    /* Grundfarver */
    --dark-grey: #222222;
    --beige: #F6EDE5;
    --darker-beige: #DDD4D1;
    --pink: #FD0062;
    --light-pink: #FECBEF;
    --purple: #5642BA;
    --neon-green: #CEFF00;
    --light-green: #f1ffb1;
}

html {
    overflow-x: hidden;
    max-width: 1920px;
}

#logo img {
    width: 15rem;
}

::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'bahnschrift';
}

nav {
    background-color: var(--dark-grey);
    height: 2.8rem;
    padding-right: 5rem;
}

nav ul, li {
    list-style: none;
}

nav ul {
    width: 100%;
    text-align: right;
}

nav li {
    display: inline-block;
    position: relative;
    background-color: var(--beige);
    color: var(--dark-grey);
    margin: 0.5rem;
    border-radius: 0.5rem;
}

nav a {
    display: block;
    line-height: 2.8rem;
    padding: 0 0.8rem;
    text-decoration: none;
    color: var(--dark-grey);
    font-size: 1.5rem;
}

nav li a:hover {
    color: var(--dark-grey);
    background-color: var(--darker-beige);
    border-radius: 0.5rem;
}

.nav-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.nav-container img {
    height: 3.5rem;
    padding-right: 10rem;
}

header {
    background-color: var(--dark-grey);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.infosection {
    max-width: 1920px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: var(--beige);
    padding: 0 10rem;
}

.infosection h1 {
    font-family: 'kooky-cloud';
    font-weight: 100;
    font-size: 8rem;
    color: var(--dark-grey);
    padding: 2rem;
    margin: 2rem 0 6rem 0;
    text-align: center;
}

.infosection h3 {
    font-size: 2rem;
    color: var(--dark-grey);
    padding: 2rem;
    text-align: center;
    font-style: italic;
}

.infosection h4, h2 {
    font-family: 'kooky-cloud';
    font-weight: 100;
    font-size: 4rem;
    padding: 2rem 0;
    color: var(--pink);
    text-align: left;
}

.infosection p {
    font-size: 1.8rem;
    padding-right: 20rem;
    text-align: left;
    padding: 2rem 0;
    line-height: 1.4;
}

.infosection img {
    transform: scale(1);
    margin-bottom: 4rem;
    border: #222222 solid 0.5rem;
}

footer {
    position: absolute;
    background-color: var(--dark-grey);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: var(--beige);
    width: 100%;
}

footer section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

footer article {
    margin-left: 6rem;
}

footer a {
    color: var(--beige);
}

footer h5 {
    color: var(--beige);
    font-size: 1.5rem;
    padding-bottom: 1rem;
}

footer img {
    width: 12.5rem;
}

.buzzy {
    margin-right: 8rem;
}

.social-media {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    height: 1rem;
}

.social-media img {
    width: 6rem;
}