* {
  font-family: "Noto Sans", sans-serif;
}
 body{
 background-color:#3d3d3d;
}
b{
color: white;
}
h1{
color: white;
}

button {
 outline: none;
 cursor: pointer;
 border: none;
 padding: 0.9rem 2rem;
 margin: 0;
 font-family: inherit;
 font-size: inherit;
 position: relative;
 display: inline-block;
 letter-spacing: 0.05rem;
 font-weight: 700;
 font-size: 17px;
 border-radius: 500px;
 overflow: hidden;
 background: #ffffff;
 color: ghostwhite;
 width: 250px;
}

button span {
 position: relative;
 z-index: 10;
 transition: color 0.4s;
}

button:hover span {
 color: black;
}

button::before,
button::after {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 z-index: 0;
}

button::before {
 content: "";
 background: #000;
 width: 120%;
 left: -10%;
 transform: skew(30deg);
 transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

button:hover::before {
 transform: translate3d(100%, 0, 0);
}

a{
	color:cyan;
}

button:active{
	background-color: #909090;
}
img{
	border-radius:100%;
	width:100%;
	height:auto;
}
/* From Uiverse.io by kamehame-ha */ 
@media (max-width: 260px) {
  button{
	width: 150px;
  }
}
/* From Uiverse.io by reglobby */ 
.input {
	 outline: none;
 cursor: text;
 border: none;
 padding: 0.9rem 2rem;
 margin: 0;
 font-family: inherit;
 font-size: inherit;
 position: relative;
 display: inline-block;
 letter-spacing: 0.05rem;
 font-weight: 700;
 font-size: 17px;
 border-radius: 500px;
 overflow: hidden;
 background: #ffffff;
 color: ghostwhite;
 width: 185px;
  background-color: #000000;
  color:white
}
p{
	margin-bottom: -10px;
}
.hidden{
	display:none;
}
.show{
	display:block;
}
.editor{
	position:relative;
	bottom:15px;
	background-color: gray;
	 border-radius: 10px;
	 width: 655px;
	color:white;
}