body {
    text-align: center;
    background-color: #333333;
    color: white;
}

header {
    border: 2px solid black;
    text-align: center;
    height: 105px;
    background-image: url(images/anime_header.png);
    padding-top: 20pt;
    color: aliceblue;
    font-family: anime_font;
    padding-bottom: 25pt;
    font-size: 20pt;
    border-radius: 10px;
}

nav a {  
    width: 130px;
    margin: 10px 0 0 0;
    padding: 5px;
    color: #003311;
    background-color: white;
    border: 3px solid #003311;
    font-size: 16pt;
    font-weight: bold;
    text-decoration: none;
    text-align: center;    
    border-radius: 10px;
    box-shadow: 2px 4px 6px #333333; 
    margin-left: 10px;
    margin-right: 10px;
}

nav a:hover {
    color: rgb(255, 201, 86);
}

@font-face {
    font-family: anime_font;
    src: url('Fonts/one\ piece\ font.ttf');
}

ul {
    list-style-type: none;
}

ul a {
    text-decoration: none;
    color: white;
}

ul a:hover {
    color: rgb(255, 201, 86); transition: all .5s ease-in-out;
}

header h1 {
    padding-bottom: 100px;
}

img {
    opacity: 0.6; transition: all .5s ease-in-out;
}

img:hover {
    opacity: 1;
}