.frame__demos a,
span,
h1 {
  color: white;
  background-color: #888888;
  padding: 6px;
  text-decoration: none;
  text-align: center;
  border-radius: 16px;
}


.frame__demos span {
  text-align: center;
}

.slide__img img{
  object-fit: cover;
  width: 100%;
  height: 100vh;

}


.link-container {
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 10px; 
  margin: 1rem;
 
}

.link {

  background-color: #888888;
  text-align: center;
  color: white;
  padding: 10px;
  text-decoration: none;
  transition: background-color 1s ease;
  border-radius: 16px;
  

}

.link:hover {
  background-color: #756e6e;
  




}

@media only screen and (max-width: 847px) {
  .link-container {
    margin-bottom: 85px;
    flex-direction: column;

    
  }

  .frame__demos a,
  span,
  h1 {
    max-width: max-content;
  }
}

