body{
	   background-image: url("Background2.jpg");
	   width: cover;
	   height: cover;
	   background-size: 1000px;
	   animation: fadeInAnimation ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}
a:link, a:visited {
  color: white;
  text-decoration: none;
  display: inline-block;
}
a:hover{
  color: #333333;
}
a:active {
	color: darkblue;
	background: repeating-radial-gradient();
}
.box{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.box .poster{
	display: flex;
	flex-direction: column;
}
.box .poster img{
	width: 100%;
	padding-bottom: 30px;
	border-radius: 5px;
}
#icon{
	text-align: right;
	font-size: 80px;
	position: fixed;
	bottom: 20px;
	right: 30px;
}
/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: Black;
}