.wrapper-top-page
{
position: fixed;
bottom: 30px;
display: none;
border: 2px solid black;
border-radius: 20px;
height: 40px;
width: 40px;
padding-top: 15px;
background-color: black;
opacity: 0.6;
z-index: 999999999999999;
}
.top-page p
{
font-size: 40px;
color: white;
text-align: center;
font-family: Georgia, "Times New Roman", Times, Serif, serif;
}
.top-page-link
{
text-decoration: none;
cursor: pointer;
}
.wrapper-top-page:hover
{
opacity: 0.5;
filter: alpha(opacity=50);
}
@media screen and (max-width: 1100px)
{
  .wrapper-top-page
  {
  right: 0.5%;
  }
}
@media screen and (min-width: 1100px)
{
  .wrapper-top-page
  {
  right: 50%;
  }
}
