*{
  margin: 0;
  padding: 0;
  font-family: sans-serif, arial;
  box-sizing: border-box;
}

body{
  background: red;
}

.nav-op{
  display: flex;
  justify-content: space-between;
  margin: 20px;
}

.nav-op a{
  color: black;
  text-decoration: none;
}

.name{
  margin: 20px;
  text-align: center;
  color: yellow;
  font-size: 30px;
}

.slide{
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.arrow{
  height: 150px;
  cursor: pointer;
}

.lf{
  transform: rotate(180deg);
}

.frame{
  width: 1100px;
  height: 500px;
  box-shadow: -1px 1px 10px 10px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.slider{
 display: flex;
 transition: all 1s ease;
}

.image{
  width: 100%;
  height: 100%;
  object-fit: cover;
}