* {
    font-family: "Franklin Gothic Medium", Arial, sans-serif;
}
body {
    margin: 0px;
    background-color: rgb(82, 4, 4);
}
a:link {
    color: white;
}
a:visited {
    color: lightgray;
}
h1 {
    margin-top: 15px;
    text-align: center;
    color: lightgray;
}

/* Navigationsfältet */

.navbar ul {
    list-style-type: none;
    background-color: rgb(163, 24, 0);
    padding: 0px;
    margin: 0px;
    overflow: hidden;
    font-weight: bold;
}
.navbar a {
    color: white;
    text-decoration: none;
    padding: 15px;
    display: block;
    text-align: center;
}
.navbar a:hover {
    background-color: rgb(142, 24, 2);
}
.navbar li {
    float: left;
}

/* Dropdown meny */

.dropdown {
    display: inline-block;
}
.dropdown a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
}
.dropdown .content {
    display: none;
    position: absolute;
    background-color: rgb(122, 24, 2);
    min-width: 100px;
}
.dropdown:hover .content {
    display: block;
}
.dropdown:hover button {
    background-color: rgb(224, 215, 215);
}
.dropdown a:hover {
    background-color: rgb(102, 24, 2);
}

.flex-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.flex-items {
    width: 600px;
    margin: 0 2.5%;
    color: white;
    padding: 14px;
    background-color: rgb(163, 24, 0);
    border-radius: 10px;
}

#box1 {
    box-shadow: rgba(153, 24, 0, 0.4) -5px 5px, rgba(153, 24, 0, 0.3) -10px 10px, rgba(153, 24, 0, 0.2) -15px 15px, rgba(153, 24, 0, 0.1) -20px 20px, rgba(153, 24, 0, 0.05) -25px 25px;
}

#box2 {
    box-shadow: rgba(153, 24, 0, 0.4) 5px 5px, rgba(153, 24, 0, 0.3) 10px 10px, rgba(153, 24, 0, 0.2) 15px 15px, rgba(153, 24, 0, 0.1) 20px 20px, rgba(153, 24, 0, 0.05) 25px 25px;
}

footer {
    background-color: rgb(163, 24, 0);
    color: white;
    padding: 15px;
    font-weight: bold;
}
