#menu-screen {
  left: 0;
  bottom: 0;
  width: 100%;
  position: absolute;
  z-index: 5;
}

#menu-screen .content {
  height: 20vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#menu-screen .start {
  height: 100%;
  width: 20%;
  position: absolute;
  top: 0;
  bottom: 0;
}

#menu-screen .content .options,
#menu-screen .content .tools {
  height: 100%;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

#menu-screen .content .options .option,
#menu-screen .content .tools .option {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 25px;
  width: 12vw;
  transition: background 0.3s, transform 0.3s;
}

#menu-screen .content .options .option i,
#menu-screen .content .tools .option i {
  font-size: 4rem;
  margin-bottom: 10px;
}

#menu-screen .content .options .option p,
#menu-screen .content .tools .option p {
  font-size: 2rem;
  text-align: center;
  line-height: 1.2;
  margin-top: 5px;
}

#menu-screen .content .options .option.focus,
#menu-screen .content .tools .option.focus {
  background-color: #f47521;
  transform: scale(1.05);
  opacity: 1;
}

#menu-screen .content .options .option.focus::after,
#menu-screen .content .tools .option.focus::after {
  display: none;
  content: "";
  background: #c2e2ff;
  width: 15px;
  height: 5rem;
  position: absolute;
}

.open-menu #menu-screen {
  background: rgba(0, 0, 0, 0.3);
}

.open-menu #menu-screen .content .options .option p,
.open-menu #menu-screen .content .tools .option p {
  text-transform: uppercase;

  margin-top: 2rem;
}

#menu-screen .content .options .profile {
  display: flex;
  align-items: center;
  opacity: 1;
}

#menu-screen .content .options .profile .profile-text {
  width: auto;
  height: unset;
  margin-left: 20px;
  font-size: 14px;
  text-transform: uppercase;
}

#menu-screen .content .options .profile .avatar {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin-left: -10px;
  border: 5px solid transparent;
}

#menu-screen .content .options .profile .avatar img {
  width: 100%;
  height: 100%;
}

#menu-screen .content .options .profile .profile-name {
  font-size: 18px;
  color: #fff;
}

#menu-screen .content .options .profile.option.focus .avatar {
  border: 5px solid #f47521;
}