body {
    background-color: rgb(60, 57, 55);
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: rgb(220, 144, 255);
    border-radius: 20px;
}

p {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: rgb(220, 144, 255);
    border-radius: 20px;
    display: block;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    font-family: monospace;
    font-size: 12pt;
    font-weight: 500;
    margin-top: 10px;
}
  
li {
    float: right;
}
li.sitename {
    float: left;
}
  
li a {
    display: block;
    color: white;
    background-color: rgb(255, 182, 245);
    text-align: center;
    padding: 8px 16px;
    text-decoration: none;
    font-family: monospace;
    font-size: 12pt;
    font-weight: 500;

    border-width: 4px;
    border-color: rgb(255, 0, 242);
    border-style: solid;
    border-top: 0px;
    border-bottom: 0px;
    border-radius: 20px;
}
  
/* Change the link color to #111 (black) on hover */
li a:hover {
    background-color: rgb(255, 192, 250);
}