:root {
  --backcolor: #2550c5;
  --textcolor: #dddddd;
}

body {
  background: var(--backcolor) !important;
  color: var(--textcolor) !important;
  font-family: Roboto;
  margin: 0;
  padding: 0;
  height: 100%;
  font-weight: 500;
  font-size:medium;
}

body:after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  position: fixed;
  background: linear-gradient(45deg, #3e7192 0%, #342d96 100%);
}

::selection {
  background-color: rgb(95, 97, 99);
}

.footer {
  display: flex;
  width: 100%;
  left: 0;
  bottom: 0;
  position: fixed;
  flex-direction: column;
}

.menu-item {
  list-style: none;
  display: flex;
  box-sizing: border-box;
  text-decoration: none;
}

.menu-item li {
  margin: 0 8px 0 0;
}

.social-item {
  list-style: none;
  box-sizing: border-box;
  text-decoration: none;
}

.social-a-item {
  text-decoration: none;
  transition: color .4s, text-decoration .4s;
  color: rgb(230, 230, 230);
  margin-right: 5px;
}

.menu-a-item {
  text-decoration: none;
  transition: color .4s, text-decoration .4s;
  color: rgb(230, 230, 230);
  margin-right: 5px;
  display: block;
}

.menu-a-item:hover {
  text-decoration-color:transparent;
  color: rgb(175, 175, 175);
}

.text-dec-none {
  font-weight:600;
  text-decoration: none;
  transition: color .4s, text-decoration .4s;
  color: #d3d3d3;
}

.text-dec-none:hover {
  text-decoration: none;
  color: rgb(96, 218, 255)
}

.center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.center-div {
  position:relative;
  text-align:center;
}

.error-button {
  background-color: rgb(255, 255, 255);
  display: inline-block;
  transition: background-color .4s, ease-out .4s;
  font-size: large;
  font-weight: bold;
  width: 100%;
  max-width:150px;
  border-radius: 3px;
}

.error-button:hover {
  text-decoration-color:transparent;
  background-color: rgb(230, 230, 230);
}

.left-down {
  position: absolute;
  bottom: 0;
  top: 65%;
  left: 10%;
  transform: translate(-10%);
}
.name {
  font-size:50px;
}

.description {
  font-size: 20px;
  top: 40%;
  transform: translate(0%, -30%);
}

@media screen and (max-width: 500px) {
  .left-down {
    position: absolute;
    bottom: 0;
    top: 55%;
    left: 10%;
    transform: translate(-10%);
  }
}

@media screen and (max-height: 700px) {
  .left-down {
    position: absolute;
    bottom: 0;
    top: 55%;
    left: 10%;
    transform: translate(-10%);
  }
}

.name {
  font-size:50px;
}

.description {
  font-size: 20px;
}

.copyright {
  display: flex;
  justify-content: flex-end;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #666;
}

::-webkit-scrollbar-horizontal {
    height: 10px;
}

::-webkit-scrollbar-thumb:horizontal {
    background: #888;
}