body
{
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
    overflow: hidden;
    padding: 0;
    margin: 0;
    justify-content: center;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


@import 'https://fonts.googleapis.com/css?family=Roboto+Mono:100';
.container
{
    height: 50%;
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;

}

.text
{
    font-weight: 100;
    font-size: 50px;
    color: #FAFAFA;
    font-family: 'Roboto Mono', monospace;
    vertical-align: baseline;

    width: 50%;
    float: left;
}


.title {
    /*    background-image: url('https://media.giphy.com/media/9bTjZrytydVRK/giphy.gif');
    background-size: cover;*/
    color: transparent;
    background: linear-gradient(-45deg, #23d5ab, #23a6d5, #e73c7e, #ee7752);
    -moz-background-clip: text;
    -webkit-background-clip: text;
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;

    text-align: right;
    font-size: 50px;
    font-family: 'Roboto Mono', monospace;
    word-break: break-all;

    width: 50%;
    float:left;
}






.center{
    display: grid;
    align-items: center;
    justify-content: center;
    margin-top:50px;
}

a {
    border: 4px solid #FAFAFA;
    color: #FAFAFA;
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Roboto Mono', monospace;
    line-height: 24px;
    margin: auto;
    padding: 12px 32px 12px 82px;
    position: relative;
    text-decoration: none;
}

a .label,
a .icon-arrow {
    backface-visibility: hidden;
    transform: translateZ(0);
    perspective: 1000;
}

a .label {
    display: inline-block;
    transition: transform .5s cubic-bezier(0.86, 0, 0.07, 1);
}

a .icon-arrow {
    fill: #FAFAFA;
    height: 15px;
    top: 17px;
    transition: transform .5s cubic-bezier(0.86, 0, 0.07, 1), opacity .4s cubic-bezier(0.86, 0, 0.07, 1);
    width: 35px;
}

a .icon-arrow.before {
    left: 32px;
    margin-right: 15px;
    position: absolute;
    transform-origin: left center;
}

a .icon-arrow.after {
    margin-left: 15px;
    opacity: 0;
    position: absolute;
    right: 32px;
    transform: translateX(75%) scaleX(0.1);
    transform-origin: right center;
}

a:hover .label {
    transform: translateX(-52px);
}

a:hover .icon-arrow.before {
    opacity: 0;
    transform: translateX(-75%) scaleX(0.1);
}

a:hover .icon-arrow.after {
    opacity: 1;
    transform: translateX(0) scaleX(1);
}

a:active {
    border-color: #e1e1e1;
    color: #e1e1e1;
}

a:active .icon-arrow {
    fill: #e1e1e1;
}



.title_start
{
    height: 12%;
    width: 100%;

    background-color: rgb(245, 245, 245, 0.4);

    text-align: center;
    vertical-align: middle;
    justify-content: center;
    display: grid;
}

h2
{
    margin: auto;
    padding: 0;
    font-family: 'Roboto Mono', monospace;
    color: whitesmoke;
    font-size: 50px;
}

.content_center
{
    height: 88%;
    width: 100%;
    vertical-align: middle;
    justify-content: center;
}

#main_container
{
    width: 60%;
    height: 95%;
    margin: auto;
    margin-top: 5%;
    background-color: rgb(245, 245, 245, 0.4);

    padding: 25px;
}

p
{
    font-family: 'Roboto Mono', monospace;
    color: white;
    float: left;
}

#inline_a
{
    all: initial;
    * {
        all: unset;
    }
    font-size: 18px;
    font-family: 'Roboto Mono', monospace;
    color: white;
    cursor: pointer;
    transition: 1s;
    text-decoration: underline;
}

#inline_a:hover
{
    color: orangered;
}

#button_copy
{
    background-color: #4CAF50; /* Green */
    border: none;
    color: #f4f4f4;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 15px;
    float: right;
    transition: 0.1s;
}

#button_copy:hover
{
	cursor: pointer;
}

#button_copy:active
{
    background-color: #f4f4f4;
    color: #4CAF50;
    
}


.pre
{
    background: #f4f4f4;
    border: 1px solid #ddd;
    border-left: 3px solid #f36d33;
    color: #666;
    page-break-inside: avoid;
    font-family: monospace;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0.3em;
    margin-top: 0.3em;
    max-width: 100%;
    overflow: auto;
    padding: 1em 1.5em;
    display: block;
    word-wrap: break-word;

    float: left;
}