@import url("https://fonts.googleapis.com/css?family=Bevan");
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background: aliceblue;
    overflow: hidden;
}

p {
    font-family: "Bevan", cursive;
    font-size: 100px;
    margin: 10vh 0 0;
    text-align: center;
    letter-spacing: 5px;
    background-color: black;
    color: transparent;
    text-shadow: 2px 2px 3px rgba(255, 255, 255, 0.1);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
}

.A {
    font-size: 1.2em;
}

code {
    color: #c871e2;
    text-align: center;
    display: block;
    font-size: 16px;
    margin: 0 30px 25px;
}

.B {
    color: #f0c674;
}

.C {
    color: #b5bd68;
}

.D {
    color: #c871e2;
    font-style: unset;
}

.E {
    color: #81a2be;
    font-weight: 500;
}

a {
    color: #ffbd3b;
    font-family: monospace;
    font-size: 20px;
    text-decoration: underline;
    margin-top: 10px;
    display: inline-block
}

@media screen and (max-width: 880px) {
    p {
        font-size: 14vw;
    }
}

.btn {
    z-index: 1;
    overflow: hidden;
    background: transparent;
    position: relative;
    padding: 8px 50px;
    /* border-radius: 30px; */
    cursor: pointer;
    font-size: 1em;
    letter-spacing: 2px;
    transition: 0.2s ease;
    font-weight: bold;
    margin: 5px 0px;
}

.btn.green {
    border: solid #ffbd3b;
    color: black;
}

.btn.green:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background: var(--green);
    z-index: -1;
    transition: 0.2s ease;
}

.btn.green:hover {
    color: #fff;
    background: #ffbd3b;
    transition: 0.2s ease;
}

.btn.green:hover:before {
    width: 100%;
}