:root {
  --blue: #3cc2ef;
  --red: #ed6077;
  --grey: #666b80;
  --black: #402f44;
  --transp-black: rgba(0, 0, 0, 0.1);
  --stroke: 4px solid var(--black);
}

.middle {
  padding: 6px 10px;
  background-color: var(--grey);
  border-top: var(--stroke);
  border-bottom: var(--stroke);
  box-shadow: inset 0 0 50px var(--black);
  max-width: 100%;
  margin: 0 auto;
  transition: width 0.5s, height 0.5s;
}

.screen {
  border: 30px solid var(--black);
  background-color: var(--grey);
  border-radius: 10px;
  box-sizing: border-box;
}

.dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: "Atkinson Hyperlegible", system-ui, sans-serif;
  float: right;
  height: 100%;
  z-index: 10003;
}

.dropbtn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.33rem;
  color: #28a1c5;
  text-transform: uppercase;
  padding: 18px 30px;
  transition: background-color 0.3s ease;
}

.dropbtn:hover {
  background-color: rgba(40, 161, 197, 0.1);
}

.dropbtn svg {
  width: 50px;
  height: 50px;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background-color: white;
  min-width: 285px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 10003;
  border-radius: 4px;
  overflow: visible;
}

.dropdown-content a {
  color: #28a1c5;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 1.36rem;
  font-weight: 600;
  text-transform: uppercase;
}

.dropdown-content a:hover {
  background-color: #e6f7ff;
}

.dropdown-content.show {
  display: block;
  animation: fadeIn 0.3s ease;
}

.dropdown .dropbtn.active {
  background-color: rgba(40, 161, 197, 0.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
