@media (min-width: 1200px) {
  #bordered {
    border-right: 2px solid white;
    border-left: 2px solid white;
  }
}

.crea a {
  color: #212529;
  text-decoration: none;
  transition: ease, 0.5s;
}

.crea a:hover {
  color: #26c2eb;
}

a {
  transition: ease .5s;
  text-decoration: none;
  color: white;
}

a:hover {
  color: #26c2eb;
}

.btn-xl {
  background-color: #26c2eb;
  border-color: #26c2eb;
}

.btn-xl:hover {
  background-color: rgb(35, 165, 197)!important;
  border-color: rgb(35, 165, 197)!important;
}

.btn-xl:focus {
  background-color: rgb(35, 165, 197)!important;
  border-color: rgb(35, 165, 197)!important;
}

#menu-button {
  z-index: 10000;
  position: fixed;
  top: 10px;
  left: 10px;
  width: 80px;
  height: 80px;
  overflow: hidden;
  background: transparent;
  color: rgb(35, 165, 197);
  line-height: 80px;
  text-align: center;
  font-size: 70px;
  cursor: pointer;
  transition: all .5s;
}

#menu-button::after {
  content: '×';
}

#menu-button.close {
  color: rgb(35, 165, 197);
  background: transparent;
}

#menu-button.close::after {
  content: '≡';
}

#menu {
  z-index: 1000;
  transition: transform .5s;
  position: fixed;
  max-width: 480px;
  margin-left: 10px;
  width: 80px;
  transform: translateY(calc(-100%));
}

#menu ul {
  padding: 0;
  width: auto;
}

#menu li {
  text-decoration: none;
  list-style-type: none;
}

#menu li a {
  text-decoration: none;
  list-style-type: none;
  text-align: center;
  align-items: center;
}

#menu i {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#menu.show-menu {
  transform: translateY(90px);
}

*::selection {
  background-color: #26c2eb;
  color: white;
}

