/* This stylizes the page defaults */
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: auto;
    background-image: url(../images/geometry.jpg);
}

/* This stylizes the header area */
.header {
    padding: 15px;
}
.header h1 {
    display: inline-block;
    color: white;
}

/* This stylizes the main page area */
.main {
    background-color: #f2f2f2;
    padding: 40px 0;
}

/* This stylizes the poster area and poster images */
.thumbnail {
    border: 0px;
    position: relative;
    padding: 50px;
    border-radius: 0;
    margin-bottom: 50px;
    
}
.thumbnail img {
    margin-top: 10px;
    margin-bottom: 30px;
    padding: 5px;
    border: 2px dashed black;
    max-width: 100%;
    height: auto;
}

/* This stylizes your "Poster X of Y" text */
.imageInfo {
	color: #959595;
	font-style: italic;
	font-size: x-small;
	float: right;
	padding-right: 5px;
}

/* This stylizes your Title and Rating Text */
.title,
.released {
    color: #444;
    margin: 0;
    font-size: 18px;
    font-weight: 800;
}
.released,
.rated {
    color: #5d5d5d;
    font-size: 14px;
    font-weight: 200;
}

/* This shapes your IMDB score area */
.score {
    background-color: #39D1B4;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-weight: 200;
    height: 80px;
    line-height: 80px;
    text-align: center;
    width: 80px;
    position: absolute;
    top: 50px;
    right: 25px;
    border-radius:100%;
}

/* This contains your like and dislike buttons */
.social {
    text-align: right;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    position: relative;
    left: -40px;
    top: -20px;
}

/* This shapes your like and dislike buttons */
.likes,
.dislikes {
    cursor: pointer;
    display: inline-block;
    font-size: 15px;
    line-height: 40px;
    min-width: 70px;
    height: 40px;
    border-radius: 50%;
    margin: 0 -30px 0 40px;
    text-align: center;
    font-weight: 200;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background 500ms;
}
.likes{
    background-color: #008700;
    color:#ffffff;
}
.likes:hover{
    background-color: #9edd87;
    color:#008700;
}
.dislikes{
    background-color: #f65a5b;
    color:#ffffff;
}
.dislikes:hover{
    background-color:#fdd6d6;
    color:#F65A5B;
}
/* This makes sure your Github Button is centered */
.footer {
    text-align: center;
    margin: 80px 0 110px;
}

/* This makes sure your Github Button text is small */
#github{
	font-size: small;
}

/* ADD YOUR LIKE AND DISLIKE HOVER/MOUSEOVER CSS CODE HERE */