@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
  box-sizing: border-box;
}

body {
    background-color:cadetblue;
  font-family: 'Roboto', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

img {
  width: 720px;
  height: 500px;
  object-fit: cover;
}

.carousel {
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  height: 530px;
  width: 720px;
  overflow: hidden;
}

.image-container {
  display: flex;
  transform: translateX(0);
  transition: transform 0.5s ease-in-out;
}

.buttons-container {
  display: flex;
  justify-content: space-between;
}

.btn {
  background-color: rebeccapurple;
  color: #fff;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  width: 49.5%;
}

.btn:hover {
  opacity: 0.9;
}

.btn:focus {
  outline: none;
}

.rodape{
    display:block;
    position: absolute;
    clear:both;
    top: 90vh;
  
}

a {
    text-decoration: none;
    color: #303030;
    letter-spacing: 2px;
}

a:hover{
    color: darkslateblue;
    font-style: oblique;
    transition: 2s;

}

@media (max-width: 600px){
  
    img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
    .carousel {
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  height: 100%;
  width: 100%;
  overflow: hidden;
    }