    *   {
    padding: 0;
    box-sizing: border-box;
    }

    body {
    background-color: white;
    font-family: Arial, Helvetica, sans-serif;
    max-width: 600px;
    line-height: 25px;
    margin: 2rem ;
    }
    
    a.link:hover {
        color: rgb(0, 122, 204);
    }

    a.link:active {
        color: rgb(0, 50, 204);
    }

    a.link:visited {
        text-decoration: none;
    }

    h1 {
        font-family: "Abel", sans-serif;
        font-weight: 900;
        font-style: normal;
        font-size: 44px;
        text-shadow: 2px 1px 2px black;
    }

    h2 {
        font-family: "Abel", sans-serif;
        font-weight: 800;
        font-style: normal;
        font-size: 36px;
    }

    th {
        font-family: "Abel", sans-serif;
        font-weight: 700;
        font-style: normal;
        font-size: 22px;
    }

    p {
        font-family: "Lato", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 18px;
    }

    img.dagens {
        display: block;
        width: 450px;
        margin: auto;
        border-radius: 20px;
        opacity: 90%;
        transition: transform 0.2s;
    }

    img.dagens:hover {
        opacity: 100%;
        transform: scale(1.05);
    }

    .btn {
        display: inline-block;
        padding: 5px 10px;
        background-color: rgb(0, 122, 204);
        color: white;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        text-align: center;
    }

    .btn:hover {
        background-color: rgb(0, 90, 204);
        text-decoration: none;
    }

    .btn:active {
        background-color: rgb(0, 50, 204);
    }

    .btntable {
        display: block;
        background-color: rgb(0, 122, 204);
        color: white;
        padding: 4px 30px;
        margin: 0px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        text-align: center;
    }

    .btntable:hover {
        background-color: rgb(0, 90, 204);
        text-decoration: none;
    }

    .btntable:active {
        background-color: rgb(0, 50, 204);
    }

    table, tr, th, td {
        border-collapse: collapse;
    }

    td {
        text-align: left;
        border-left: 1px solid black;
        border-right: 1px solid black;
        padding: 5px;
        margin-left: 5px ;
    }

    tr:hover {
        background-color: #f2f2f2;
    }

    td.item {
        text-align: center;
    }

    th {
        height: 40px;
        width: 180px;        
        border: 1px solid black;
        border-bottom: 2px solid black;    
        background-color: #f2f2f2;
    }


    .menu {
        text-align: center;
        width: 550px;
        background-color: rgb(0, 122, 204);
        padding: 5px;
        border-radius: 10px;
        box-shadow: 1px 1px 6px black;
    }

    .menu a {
        text-decoration: none;
        color: white;
        margin: 20px;
        padding: 7px 10px 7px 10px;
        border-radius: 5px;
    }

    .menu a:hover {
        background-color: rgb(0, 90, 204);
        box-shadow: inset 1px 1px 6px black;
    }

    .menu a:active {
        background-color: rgb(0, 50, 204);
        box-shadow: inset 1px 1px 6px black;
    }

    .dropdown {
        position: relative;
        display: inline-block;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        background-color: rgb(93, 187, 250);
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        border-radius: 10px;
    }

    .dropdown-content a {
        margin: 0px;
        color: white;
        border-radius: 10px;
        text-decoration: none;
        display: inline-block;
    }

    .dropdown-content a:hover {
        background-color: rgb(0, 122, 204);
    }

    .dropdown:hover .dropdown-content {display: block;}

    .title1 {
        font-family: "Abel", sans-serif;
        font-weight: 900;
        font-style: normal;
        font-size: 48px;
        text-align: center;
        margin: 20px;
    }
