.btn-hover.color-1 {
    background-image: linear-gradient(to right, #25aae1, #40e495, #30dd8a, #2bb673);
}
.btn-hover:hover {
    background-position: 100% 0;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn-hover {
    width: fit-content;
    width: -moz-fit-content;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    margin: 0 10px 0 0;
    padding: 0 25px 0 25px;
    height: 55px;
    text-align: center;
    border: none;
    background-size: 300% 100%;
    border-radius: 50px;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
body {
    background-color: #131317;
    font-family: 'Ubuntu', sans-serif;
}
#wrapper {
    background-color: #131317;
    color: #ececec;
    font-family: 'Roboto', sans-serif;
    margin-left: auto;
    margin-right: auto;
    max-width: 950px;
    min-width: device-width;

}


input {
    width: 100%;
    padding: 12px 10px;
    margin: 8px 0;
    box-sizing: border-box;
    font-size: 18px;
    border-radius: 15px;
    border: 0;
    background-color: #5f5f5f;
    font-family: 'Roboto', sans-serif;
    color: #ececec;

}

button {
    width: fit-content;
    width: -moz-fit-content;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    background-image: linear-gradient(to right, #e73131, #b52582, #b72222, #92195c);
    cursor: pointer;
    margin: 0 10px 0 0;
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 0 25px 0 25px;
    height: 55px;
    text-align: center;
    border: none;
    background-size: 300% 100%;
    border-radius: 50px;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    font-family: 'Roboto', sans-serif;
}



#pfp {
    border-radius: 100%;
    height: 64px;
    width: 64px;
}

.upppercase {
    text-transform: uppercase;
}

textarea {
    width: 100%;
    height: 150px;
    padding: 12px 10px;
    margin: 8px 0;
    box-sizing: border-box;
    font-size: 18px;
    resize: vertical;
    border-radius: 15px;
    border: 0;
    background-color: #5f5f5f;
    color: #ececec;
}

.frame .inner {
    padding: 50px;
    height: 100%;
    display: flow-root;
}

#button {
    margin: 5px;
}


body {
    line-height: 1.5;
    text-align: left;
}


.frame-hr {
    border-top: 1px solid #1f1f23 !important;
    margin-top:25px;
    margin-bottom:25px
}
hr {
    border: none;
        border-top-color: currentcolor;
        border-top-style: none;
        border-top-width: medium;
    border-top: 1px solid #bbb0b0;
}

.half {
    width: 50%;
}

.frame .inner {
    padding: 35px;
    height: 100%;
    background-color: #242728;
    color: #ffffff;
    margin: 55px;
    border-radius: 25px;   
}

.frame .inner .lightmode {
    padding: 35px;
    height: 100%;
    background-color: #bbbbbb;
    color: #242222;
    margin: 55px;
    border-radius: 25px;   
}



.md-box {
    font-family: 'Ubuntu', sans-serif;
}

ul {
    list-style: none;
    padding: 0;
  }
  li {
    padding-left: 1.3em;
  }
  li:before {
    content: "\2192"; 
    display: inline-block;
    margin-left: -1.3em; 
    width: 1.3em;
  }

.footer {
    float: right; 
    margin-right: 5em;
    color: #727679;
}

.footer .links {
    display: flex;
    justify-content: center;
align-items: center;
}

.frame .inner p {
    color: #727679;
}

a:link {
    text-decoration: none;
    color: #8e9396 !important;
    filter: grayscale(100) !important;
}

 a:link:hover {
    text-decoration: none;
    color: #ffffff ;
    filter: grayscale(0) !important;
}

a:link:visited {
    text-decoration: none;
    color: #ffffff !important;
}

.pfp {
    border-radius: 100%;
    max-height: 128px;
    max-width: 128px;
    margin-left: auto;
    margin-right: auto;
}


*, *::before, *::after {
	box-sizing: border-box;
}

@keyframes rotate {
	100% {
		transform: rotate(1turn);
	}
}

.rainbow {
	position: relative;
	z-index: 0;
	width: 400px;
	height: 300px;
	border-radius: 10px;
	overflow: hidden;
    padding: 2rem;
    
}
	
	.rainbow::before {
		content: '';
		position: absolute;
		z-index: -2;
		left: -50%;
		top: -50%;
		width: 200%;
		height: 200%;
		
		background-repeat: no-repeat;
		background-size: 50% 50%, 50% 50%;
		background-position: 0 0, 100% 0, 100% 100%, 0 100%;
		background-image: linear-gradient(#399953, #399953), linear-gradient(#fbb300, #fbb300), linear-gradient(#d53e33, #d53e33), linear-gradient(#377af5, #377af5);
		animation: rotate 4s linear infinite;
	}
	
	.rainbow::after {
		content: '';
		position: absolute;
		z-index: -1;
		left: 6px;
		top: 6px;
		width: calc(100% - 12px);
		height: calc(100% - 12px);
        background: #131317;
        color: white;
		border-radius: 5px;
	}