* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100vw;
  height: 1000vh;
  font-family: "Lemon Milk";
  background: #000;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.1s ease-out;
}

p {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}

nav,
footer {
  position: fixed;
  width: 100%;
  padding: 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav {
  top: 0;
}

footer {
  bottom: 0;
}

.slider {
  position: fixed;
  top: 0;
  left: 0;
  width: 500%;
  height: 100vh;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.card {
  width: 400px;
  height: 500px;
  display: flex;
  flex-direction: column-reverse;
  transition: transform 0.1s ease-out;
  overflow: hidden;
}
