body, html {
    margin: 0;
    background-color: #13244b;
    font-family: 'Quicksand', sans-serif;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}
.header .left, .header .right, .header .center {
    flex: 1;
    text-align: center;
}
.header .left {
    text-align: left;
}
.header .right {
    text-align: right;
}
.header a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}
.title h1 {
    font-size: 5em;
    font-family: 'Kanit', sans-serif;
    margin: 0;
    font-weight: 1200;
}
.title p {
    font-size: 30px;
    color: #ffffff;
    font-family: 'Kanit', sans-serif;
    margin-top: -45px;
}
.animated-link {
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.animated-link:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px #2defe6;
    background-color: rgba(28, 95, 126, 0.7);
}
h1 {
    color: white;
    font-size: 24px;
    padding: 20px;
    border-radius: 5px;
}
.content {
    display: block;
    width: fit-content;
    padding: 20px;
    border-radius: 20px;
}
.content h1 {
    background-color: #49619c;
    transition: 0.2s;
}
.content h1:hover {
    transform: scale(1.01);
    background-color: #5875bd;
}
a, a:hover, a:visited, a:active {
    text-decoration: none; /* Fjerner all underlining og dekorasjoner fra lenker */
}
