* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color: rgba(238, 241, 243, 0.792);
}
header h1{
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 3rem;
    transition: all 1s;
}
header h1:hover{
    color: red;
}
.container-slide {
  display: flex;
  width: 50vw;
  height: 60vh;
  background-color: black;
  border-radius: 10px;
  box-shadow: 0 20px 30px black;
  justify-content: space-between;
  
}
.container-items {
  position: absolute;
  display: flex;
  width: 50vw;
  height: 60vh;
  border-radius: 10px;
  overflow: hidden;
    
}
.item {
  width: 50vw;
  height: 60vh;
  transition: all 1s;
}
.item img {
  width: 50vw;
  height: 60vh;
}
/* Isso está aqui para gerar a transição de troca de imagem do item */
.item:first-child{
    margin-left: -100%;
}
.action-button {
  font: bold 30px sans-serif;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  color: #00000000;
  user-select: none;
}
.action-button:hover{
    color: white;
    background-color: #00000099;
    border-radius: 10px;
    cursor: pointer;
    transition: all 1s;

}
