body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: rgba(202, 189, 189, 1);
}
h2{
    text-align: center;
    font-family: "Exo 2", sans-serif;
    color:rgb(68, 35, 4);
}
.conteiner{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 15px;
    transition: transform 0.3s;
    cursor: pointer;
}
.iten{
    border: solid rgba(68, 35, 4, 0.9) 0.5rem;
    flex-basis: 500px;
    
}
img{
    max-width: 100%;
    height: auto;
    width: auto;
    cursor: pointer;
}
img:hover {
    transform: scale(1.05);
}

.back-button {
    position: fixed;
    top: 50%;
    right:10px;
    transform: translateY(-50%);
    padding: 10px 20px;
    background-color: #660b0b;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
    font-size: 1rem;
    font-family: "Nunito Sans", sans-serif;
}
  
  .back-button:hover {
    background-color: rgb(182, 6, 59);
  }

  .back-button2 {
    position: fixed;
    top: 59%;
    right: 10px;
    transform: translateY(-50%);
    padding: 10px 20px;
    background-color: #660b0b;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
    font-size: 1rem;
    font-family: "Nunito Sans", sans-serif;
  }
  
  .back-button2:hover {
    background-color: rgb(182, 6, 59);
  }