:root {
  --main-color: #f16377;
  --secondary-color: #e4dbdb;
  --main-bg: #282828;
  --secondary-bg: #372f44;
  --sidebar-max-width: 16em;
  --accent-blue: #5052b5;
  --accent-pink: #b74e91;
}

#sidebar {
  background-color: var(--main-bg);
}

#intro {
  position: relative;
  text-align: center;
  background-color: var(--secondary-bg);
}

#intro::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/03.jpg') no-repeat center;
  background-size: cover;
  opacity: .15;
}

#intro .logo {
  width: 100%;
  max-width: 40em;
}

#intro .actions {
  display: flex;
  justify-content: center;
}

#one .icon {
  transform: scale(1.5);
}

.icon {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.icon img {
  width: calc(100% - 1em);
  height: calc(100% - 1em);
}

/**
 * Desktop
 */
@media (min-width: 1281px) {
  #sidebar {
    max-width: var(--sidebar-max-width);
  }

  #sidebar + #wrapper,
  #sidebar + #wrapper + #footer {
    margin-left: var(--sidebar-max-width);
  }
}
