ul
{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: rgb(0, 0, 0);
}

li
{
    float: left;
}

li a
{
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

li a:hover:not(.active)
{
    background-color: rgb(22, 22, 22);
}

.active
{
    background-color: #199BDC;
}

body
{
    background-image: url('/static/background.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    color: white;
    font-family: "Shanti", sans-serif;
    margin: 0px;
}

/* TEXT */
a.linkbutton {
    color: black;
    text-decoration: none;
}

h1, h2, h3 {
    margin: 0px;
}

hr {
    height: 3px;
    border: none;
    background-color: #ffffff;
    border-radius: 10px;
}

.text-div
{
    display: inline;
}

/* BOXES */
* {
    box-sizing: border-box;
}

/* BLACK BACKGROUND BOX */
.black-box {
    position: relative;
    text-align: left;
    border-radius: 15px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 15px;
}

.s-transparent-box {
    position: relative;
    text-align: left;
    border-radius: 0px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px;
}

.transparent-box {
    position: relative;
    text-align: left;
    border-radius: 0px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
    padding: 15px;
}

.footer {
    position: absolute;
    color: white;
    text-align: center;
    border-radius: 0px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 15px;
}

/* BUTTONS */
.btn {
    font-family: "Shantell Sans", cursive;
    font-weight: bold;
    padding: 10px;
    letter-spacing: .05em;
    text-transform: none;
    background-color: transparent;
    background: rgb(255, 255, 255);
    border: none;
    margin: 6px;
    cursor: pointer;
    border-radius: 8px;
}

.small-btn {
    padding: 6px 11px 6px 11px;
    border-radius: 50%;
}

.smallest-btn {
    border-radius: 50%;
    padding: 5px 10px 5px 10px;
    margin: 0px;
}
