.draw-border {
  box-shadow: inset 0 0 0 2px var(--maincolor);
  color: var(--maincolor);
  transition: color 0.25s 0.0833333333s;
  position: relative;
}
.draw-border::before, .draw-border::after {
  border: 0 solid transparent;
  box-sizing: border-box;
  content: "";
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  bottom: 0;
  right: 0;
}
.draw-border::before {
  border-bottom-width: 2px;
  border-left-width: 2px;
}
.draw-border::after {
  border-top-width: 2px;
  border-right-width: 2px;
}
.draw-border:hover {
  color: var(--hovercolor);
}
.draw-border:hover::before, .draw-border:hover::after {
  border-color: var(--hovercolor);
  transition: border-color 0s, width 0.25s, height 0.25s;
  width: 100%;
  height: 100%;
}
.draw-border:hover::before {
  transition-delay: 0s, 0s, 0.25s;
}
.draw-border:hover::after {
  transition-delay: 0s, 0.25s, 0s;
}
.draw-white {
  box-shadow: inset 0 0 0 2px white;
  color: white;
  transition: color 0.25s 0.0833333333s;
  position: relative;
}
.draw-white::before, .draw-white::after {
  border: 0 solid transparent;
  box-sizing: border-box;
  content: "";
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  bottom: 0;
  right: 0;
}
.draw-white::before {
  border-bottom-width: 2px;
  border-left-width: 2px;
}
.draw-white::after {
  border-top-width: 2px;
  border-right-width: 2px;
}
.draw-white:hover {
  color: var(--hovercolor);
}
.draw-white:hover::before, .draw-white:hover::after {
  border-color: var(--hovercolor);
  transition: border-color 0s, width 0.25s, height 0.25s;
  width: 100%;
  height: 100%;
}
.draw-white:hover::before {
  transition-delay: 0s, 0s, 0.25s;
}
.draw-white:hover::after {
  transition-delay: 0s, 0.25s, 0s;
}
.btn {
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1.5;
  font: 700 120% "Roboto Slab", sans-serif;
  padding: 1em 2em;
  letter-spacing: 0.05rem;
}
@media (max-width: 1260px) {
  .btn {
    font-size: 100%;
    box-shadow: inset 0 0 0 1px;
  }
  .btn:before {
    border-bottom-width: 1px;
    border-left-width: 1px;
  }
  .btn:after {
    border-top-width: 1px;
    border-right-width: 1px;
  }
}
