html {
    background-color:deepskyblue;
}

body {
    font-family:fantasy;
    font-size: 90%;
}   

.container {
    max-width:  940px;
    margin-left:auto;
    margin-right:auto;
    background: url(../images/brown.jpg) left bottom repeat-x, whitesmoke url(../images/brown.jpg) left top repeat-x;
    padding-top: 70px;
    padding-left:40px;
    padding-right: 40px;
    box-sizing:border-box;
}

/*Media Query*/
@media screen and (max-width:480px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (max-width: 1300px) {
    .container {
        max-width: 1300px;
    }
}
/*End of Media Query*/

 .box1 {
    background: url(../images/wallpaper.jpeg) no-repeat center center;
    background-size: cover;
 }

header {
    padding-top:20px;
    padding-bottom:20px;
    color:deeppink;
}

li {
    color:deeppink;
}

/* Typography */
header h1 {
    margin:0;
    font-family: Arial, Helvetica, sans-serif;
    font-weight:bold;
    font-size: 165%;
    font-style: normal;
    letter-spacing: 4px;
    text-shadow: 1px 5px 0.5px chartreuse;
}

header p{
    font-size: 100%;
    margin-top: 10px;
    text-align: justify;
    color:goldenrod;
}

header p a {
    text-decoration: none;
}

.p1 p {
    margin-top: 10px;
    text-indent: 25px;
    color:goldenrod;
}
/* End of Typography*/

header h1 {
    margin:0;
    font-weight:normal;
    font-size: 165%;
}


header p{
    margin:0;
    
}

.content-area {
    margin-top:20px;
    
    border-bottom: 2px solid black;
    
}  

/*Media Query*/
@media screen and (max-width: 480px) {
    .content-area {
        padding-top: 20px;
    }
}
/*Media Query*/

.main {
    width: 70%;
    float:left;
    padding-right: 40px;
    box-sizing:border-box;
}

/* Disappearing info-box */
.info-box {
    background-color:aquamarine;
    border: 5px solid blue;
    padding: 20px 40px 7px 40px;
    margin-bottom: 1em;
}

@media screen and (max-width: 480px) {
    .hide-small {
        display: none;
    }
}

/* End of disappearing info-box */



.support {
    width: 30%;
    float:left;
    background-color: salmon;
    background-image: linear-gradient(to bottom, salmon, violet);
    padding-left: 40px;
    padding-right:40px;
    box-sizing:border-box;
    font-size: 85%;
    padding-top:  20px;
    padding-bottom: 20px;
    z-index: 9;
}

.fix {
    clear:both;
}

/*Media Query*/
@media screen and (max-width: 700px) {
    .main,
    .support {
        width: auto;
        float: none;
    }

    .main {
        padding-right: 0;
    }
}
/*Media Query*/

p {
    color:blueviolet
}

footer p {
    color:black;
    text-align:center;
    font-size:  81%;
    color:blue;
    padding-top:20px;
    padding-bottom:20px;
}

h1 {
    color:deeppink;
    text-align: center;
    font-size:165%;
    font-weight:normal;
    padding-top:20px;
    padding-bottom:20px;
}

header p{
    color:deeppink;
}

aside {
    color:deeppink;
}

header p span {
    color:deeppink;
}

.highlight {
    color:blue;
    background-color:yellow;
}

.brand-color {
    color:purple;
    background-color:plum;
}

/* Table Styles */
table {
    border-spacing: none;
    border-collapse: collapse;
    width:100;
}
table th {
    text-align: left;
    background-color: lightpink;
    color:darkorchid;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.4);
}

table th, table td {
    border:1px solid rebeccapurple;
}

table tbody tr:nth-child(even) td {
    background-color:lightpink;
}

table th:nth-child(2), table th:nth-child(3),
table td:nth-child(2), table td:nth-child(3) {
    text-align:center;
}

.col-character {
    width:60%;
}

.col-dateofdebut, .col-placeofdebut {
    width:20%;
}
/* End Table Styles*/

/* Site Navigation*/
.site-nav li {
    list-style:none;
    float:left;
    margin-right: 10px;
}

.site-nav ul {
    margin:0;
    padding:0;
}

.site-nav {
    margin-top:20px;
}

.site-nav a {
    text-decoration:none;
    color:darkmagenta;
    padding: 10px 20px;
    border: 3px solid darkmagenta;
    display: block;
    border-bottom: 2px solid darkmagenta;
}

.site-nav a:hover {
    background-color:mediumpurple;
}
/* End of Site Navigation*/

@media screen and (max-width: 480px) {
    .site-nav li {
        width: 70%;
        margin-right: 0;
    }

    .site-nav a {
        padding: 20px 0;
        margin-right: 5px;
        margin-bottom: 5px;
        text-align: center;
        border: 3px solid darkmagenta;
    }
}

/*Slideshow*/
.image-banner {
    position: relative;
    top: 0px;
    left: 200px;
    z-index: 10;
    margin-bottom: 30px;
    margin-top: 30px;
    padding-bottom: 30px;
}
.image-banner img {
    display: block;
}
.cycle-slideshow {
    margin-bottom: 30px;
    width: 100%;
    padding-bottom: 30px;
    box-sizing: border-box;
}
.slide {
    width: 70%;
    position: relative;
    padding-left: 20px;
    padding-top: 20px;
    margin-bottom: 30px;
    box-sizing: border-box;
}
.slide-text {
    position: relative;
    bottom: -10;
    background-color:mediumpurple;
    color:purple;
    width: 30%;
    padding: 20px;
    padding-top: 20px;
    box-sizing: border-box;
}
.slide-text h3 {
    margin:0;
    color:purple;
}
.slide-text p {
    color:purple;
}
/*End of slideshow  */

/*Previous and Next*/
.cycle-prev, .cycle-next {
    position: absolute;
    width: 20%;
    top: 30%;
    background-color: palegreen;
    color: #FFF;
    padding: 1px 10px;
    display: block;
    cursor: pointer;
    font-size: 130%;
    z-index: 1000;
    opacity: 0;
    transition: opacity .5s;

}

.cycle-next {
    right: 0;
}

.cycle-slideshow:hover .cycle-prev,
.cycle-slideshow:hover .cycle-next {
    opacity: 1;
}

/* End Previous and Next*/



