/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

h1 {
    font-size: 72px;
    font-family: Corbel, sans-serif;
    text-shadow: 2px 2px #FFF;
    color: #a084f4;
    margin-bottom: -10px;
    margin-top: 50px;
    padding: -20px;
    background: none;
}

h2 {
    font-size: 30px;
    font-family: Corbel, sans-serif;
    text-shadow: 1px 1px #FFF;
    color: #ff288f;
    margin-bottom: 0px;
    margin-top: 0px;
}

h3 {
    font-size: 14px;
    font-family: Arial, sans-serif;
    color: #ded4fc;
    text-shadow: 1px 1px #000;
    display: inline;
}

html, body {
    width: 100%;
    padding: 0; margin: 0;
    cursor: url("cursor.gif"), default;
    font-size: 14px;
    font-family: Arial;
    color: #000;
}

body {
    cursor: url("cursor.gif"), default;
    background-image: url("medusa2.png"), url("starsanimated.gif");
    background-position: left center, left top;
    background-repeat: no-repeat, repeat;
    background-attachment: fixed, fixed;
}

.sidebar {
    float: left;
    width: 13%;
    flex: 1;
    display: block;
    margin-top: -22px;
    margin-right: 20px;
    padding: 10px -20px;
}

.navlist {
    list-style: none;
    width: 200px;
    display: inline;
    font-size: 16px;
    font-family: Corbel, sans-serif;
    color: #a084f4;
    line-height: 2em;
    font-weight: bold;
}

.navlist li a {
    display: block;
    padding: 8px 16px;
    margin: 10px;
    text-decoration: none;
    border: 1px dashed #ff288f;
    box-shadow: 5px 5px rgb(252, 118, 182, 0.9);
    background-color: rgba(255, 255, 255, 0.6);
}

.navlist li a:hover {
    background-color: #7098ff;
}

.content {
    float: left;
    width: 50%;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 50px;
    height: 100%;
    border: 1px dashed #ff288f;
    border-radius: 5px;
    box-shadow: 5px 5px rgb(252, 118, 182, 0.9);
    background-color: rgba(255, 255, 255, 0.6);
    text-align: justify;
}

p {
    font-size: 14px;
    font-family: Arial;
    color: #000;
    line-height: 1.2em;
    margin-top: -1px;
}

.waifus table {
    border: none;
    width: 100%;
    text-align: center;
    table-layout: fixed;
    
}

.waifus td, th, tr {
    border: 1px dashed #fff;
    border-radius: 0px;
    width: 50%;
    padding: 10px;
    text-align: center;

}

.waifus td {
    width: 50%;
}

table, td, th {
    border: 1px dashed #ff87d5;
    border-radius: 5px;
    margin: 15px;
    padding: 10px;
    width: 50%;
    text-align: center;
    margin-left: auto; 
    margin-right: auto;
    
}

tr, td {
    text-align: left;
}

a {
    color: #a084f4;
    text-shadow: 1px 1px #000;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
}

a:hover {
    color: #FFF;
    text-decoration: underline;
}

a:active {
    color: #FFF;
}