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

body {
  font-family: "helvetica neue", sans-serif;
  min-height: 100vh;
  background-image: linear-gradient(315deg, #eec0c6 0%, #7ee8fa 74%);
  background-repeat: no-repeat;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

nav {
  position: relative;
}

.navbar {
  display: flex;
  justify-content: space-around;
  font-size: 20px;
  background: rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar > li {
  position: relative;
  display: flex;
  justify-content: center;
}

.navbar > li > a {
  text-transform: uppercase;
  display: block;
  font-weight: bold;
  text-align: center;
  padding: 20px;
}

.dropdown {
  position: absolute;
  top: 100%;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  display: none;
  padding: 20px;
}

.trigger-enter .dropdown {
  display: block;
}

.trigger-enter-active .dropdown {
  opacity: 1;
}

.dropdownBackground {
  width: 100px;
  height: 100px;
  position: absolute;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 50px 100px rgba(50, 50, 93, 0.1),
    0 15px 35px rgba(50, 50, 93, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s, opacity 0.1s, transform 0.2s;
  transform-origin: 50% 0;
  display: flex;
  justify-content: center;
  opacity: 0;
}

.dropdownBackground.open {
  opacity: 1;
}

.arrow {
  position: absolute;
  width: 20px;
  height: 20px;
  display: block;
  background: white;
  transform: translateY(-50%) rotate(45deg);
}

.bio {
  width: 300px;
  display: flex;
  align-items: center;
}

.bio img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 10px;
}

.projects li,
.contact li {
  display: block;
  text-align: center;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.projects li {
  padding: 15px 10px;
}

.projects li:not(:last-child) {
  border-bottom: 1px dotted #7b7171;
}

.contact li {
  padding: 10px 0;
}

.contact li:not(:last-child) {
  border-bottom: 1px dotted #7b7171;
}