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

body {
  height: 100vh;
  background-color: rgb(139, 62, 85);
  font-family: sans-serif;
}

.dropdown {
  height: 10vh;

  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 80%;
  margin: auto;
}

.products,
.projects {
  position: relative;
}

.projects ul,
.products ul {
  position: absolute;
  background: white;
  margin-top: 10px;
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  border-radius: 5px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px) scaleY(0);
  transform-origin: top;
  transition: all 0.8s ease;
}

.projects a,
.products a {
  color: black;
  text-decoration: none;
}

.projects li,
.products li {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dropdown button,
.home {
  background: none;
  border: none;
  color: white;
  text-decoration: none;
  font-size: 18px;
  cursor: pointer;
}

.dropdown button:hover {
  color: rgb(224, 224, 224);
}

.projects li:hover,
.products li:hover {
  background: lightpink;
}

.projects button:focus + ul,
.products button:focus + ul {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scaleY(1);
}
