body {
    background: linear-gradient(to bottom, #ffffff 0%, #ffccff 100%);
    background-attachment: fixed;
    background-repeat: no-repeat;
    font-family: 'Vibur', cursive;
    font-family: 'Abel', sans-serif;
    opacity: .95;
}
table {
    width: 90%;
    margin: 20px auto;
    border-collapse: collapse;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
table th, table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
    color: black;
}
table th {
    background: #ffccff;
    color: black;;
    text-transform: uppercase;

}

table tr:nth-child(even) {
    background-color: MintCream;
    color: black;
}

table tr:hover {
    background: linear-gradient(to bottom, #ffff99 0%, #ff99cc 100%);
}
table td a {
    text-decoration: none;
    color:#ffccff;
    font-weight: bold;
}
table td a:hover {
    text-decoration: underline;
    color: black;
}
.link-button{
    background-color: lightgoldenrodyellow;
    border: 1px solid black;
    padding: 5px;
    color: black;
    border-radius: 20px;

}

tr{
    padding: 10px;
    border: 1px solid black;
    background-color: lightpink;
    color: black;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    color: black;
    background-color:  #ff99cc;
}
nav li {
    float: left;
}
nav li a {
    display: block;
    color: white;
    text-align: center;
    padding: 10px 12px;
    text-decoration: none;
}
nav li a:hover {
    background-color: #ffccff;
    color: black;
}

div ul {
    background: white;
}


