/********** Fullscreen **********/

.btn {
  display: block;
  position: fixed;
  margin-left: 50%;
  margin-right: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  border: 1px solid #f5ff00;
  border-radius: 5px;
  font-size: 0.9rem;
  padding: 0.5rem 0.7em;
  background-color: rgba(245, 255, 0, 0.1);
  color: #f5ff00;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  -webkit-font-smoothing: antialiased;
  cursor: pointer;
  transition: all .3s;
  z-index: 11;
}

.btn_works {
  left: 100px;
  right: unset;
  text-decoration: none;
}

.btn:hover {
  background: #f5ff00;
  color: #111111;
}

/**************************************** Mediascreen ****************************************/

@media screen and (max-width: 1124px) {

.btn {
  display: none;
}

}