html {
    background-color: rgb(61, 30, 30);
}
body {
    background-color: rgb(19, 3, 29);
    color: rgb(104, 91, 91);
    font-family: Arial, Helvetica, sans-serif;
    margin: 25px 50px 10px 50px;
    padding: 10px;
   border-radius: 20px;
}
p {
    color: rgb(250, 218, 37);
    font-size: 1.4vw;
    line-height: 2.5vh;
   
}
p.citat{
    text-align: right;
    color: rgb(1, 126, 11);
}
p:hover {
        background-color: rgb(221, 21, 134);    

}
h1,h2,h3 {
    color: rgb(19, 37, 196);
    font-family:Georgia, 'Times New Roman', Times, serif;
    text-align:initial;
}
a {
    color: red;
}
a:visited {
    color:rgb(218, 32, 32);
}
a:hover {
    background-color: rgb(221, 133, 0);
}
a:active {
    color
}
table, th, td {
    border: 1px solid;
  }
td {
    text-align: center;
}
th:hover {
    background-color: chartreuse;
}
tr:hover {
    background-color: aqua;
}



nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #c1e727;
  }
  
nav li {
    float: left;
  }
  
nav li a {
    display: block;
    color: rgb(43, 10, 10);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  /* Change the link color to #111 (black) on hover */
nav li a:hover {
    background-color: #1124d4;
    color: aliceblue;
  }