@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');
* {
  font-family: 'Montserrat', 'sans-serif';
}
body, a {
  color: white;
  background-color: rgb(48, 48, 212);
}
button {
  background-color: black;
  color: white;
  padding: 10px;
  padding-right: 15px;
  padding-left: 15px;
  border: 2px solid black;
  border-radius: 5px;
}

.connect {
  background-color: black;
  color: rgb(255, 255, 255);
}
.connect:hover {
  animation-name: connect-hover;
  animation-duration: 0.25s;
  animation-fill-mode: forwards;
}
.connect:not(:hover) {
  animation-name: connect-nohover;
  animation-duration: 0.25s;
  animation-fill-mode: forwards;
}
.disconnect {
  background-color: black;
  color: rgb(255, 255, 255);
}
.disconnect:hover {
  animation-name: disconnect-hover;
  animation-duration: 0.25s;
  animation-fill-mode: forwards;
}
.disconnect:not(:hover) {
  animation-name: disconnect-nohover;
  animation-duration: 0.25s;
  animation-fill-mode: forwards;
}
@keyframes connect-hover {
  from {color: white;}
  to {color: rgb(0, 255, 4);}
}
@keyframes connect-nohover {
  from {color: rgb(0, 255, 4);}
  to {color: white;}
}
@keyframes disconnect-hover {
  from {color: white;}
  to {color: rgb(244, 25, 25);}
}
@keyframes disconnect-nohover {
  from {color: rgb(244, 25, 25)}
  to {color: white;}
}
.plchldr {
  color: black;
  background-color:black;
}
.statustext {
  color: white;
  background: black;
}
input {
  background-color: black;
  color: white;
  border-style: solid;
  border-color: white;
  border-radius: 8px;
  padding: 5px;
}
footer, footer :active {
  font-size: 10px;
  bottom: 10px;
}
/* Credit to CoolCoderSJ for the badge css (making my own modifications) */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300&display=swap');

.badge, .badge:hover, .badge:active, .badge2, .badge2:hover, .badge2:active, .badge3, .badge3:hover, .badge3:active, .badge4, .badge4:hover, .badge4:active {
  font-family: 'Raleway', sans-serif;
  position: fixed;
  bottom: 10px;
  right: 10px;
  display: inline-flex;
  padding: 8px 12px;
  align-items: center;
  text-align: center;
  color: white;
  text-decoration: none;
  background-color: rgb(17, 29, 44);
  border-radius: 6px;
  font-size: 12px;
}

.badge2, .badge2:hover, .badge2:active {
	bottom: 60px;
	right: 20px;
}

.badge3, .badge3:hover, .badge3:active {
	bottom: 100px;
	right: 20px;
}

.badge4, .badge4:hover, .badge4:active {
	bottom: 140px;
	right: 20px;
}

.badge img:hover, .badge:hover > img, .badge2 img:hover, .badge2:hover > img, .badge3 img:hover, .badge3:hover > img, .badge4 img:hover, .badge4:hover > img {
	animation: rotation 2s infinite linear;
}

.badge:hover, .badge2:hover, .badge3:hover, .badge4:hover {
	cursor: pointer !important;
	font-size: 13.5px !important;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.no-animate, .no-animate:hover, .no-animate:active, .no-animate > img, .no-animate:hover > img, .no-animate:active > img {
	animation: none !important;
}
.type h1 {
  overflow: hidden;
  border-right: .15em solid rgb(0, 0, 0);
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: .15em;
  animation: 
    typing 3.5s steps(40, end),
    blink-caret .75s step-end infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: rgb(255, 255, 255); }
}