* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    min-height: 100vh;
    overflow:hidden;
    background-image: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%);
    font-family: 'General Sans';
    user-select:none;
}



#heading {
    font-size: 5.5vw;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    margin-top: .7em;
    line-height: 1;
}

.fancy {
    position: relative;
    white-space: nowrap;

    &:after {
        --deco-height: 0.3125em;
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: calc(var(--deco-height) * -0.625);
        height: var(--deco-height);
        background-image: url("data:image/svg+xml,%3Csvg width='100' height='64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M-17 30.5C-1 22 72-4 54 13 37.9 28.2-2.5 57.5 16 55.5s72-29 104-40' stroke='%2300FDCF' stroke-width='10'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h100v64H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
        background-size: auto 100%;
        background-repeat: round;
        background-position: 0em;
    }
}



#word {
    color: rgb(34, 34, 34);
    background: linear-gradient(142.99deg, rgba(217, 217, 217, 0.63) 15.53%, rgba(243, 243, 243, 0.63) 88.19%);
    box-shadow: 0px 12px 24px -1px rgba(0, 0, 0, 0.18);
    border-color: rgba(7, 4, 14, 0);
    border-radius: 15px;
    font-size: 2em;
    font-weight: 700;
    margin: 1em auto;
    margin-top: 8%;
    padding: 18px 15px;
    outline: none;
    text-align: center;
    width: 35%;
}

.btns {
    margin-top: 2%;
    padding: 10px 30px;
    width: 80%;
    min-width: 40%;
    display: flex;
    justify-content: center;
    margin: auto;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 27px;
    border: unset;
    border-radius: 15px;
    color: #212121;
    z-index: 1;
    margin: 1vw 1vw;
    background: #e8e8e8;
    position: relative;
    font-weight: 1000;
    font-size: 17px;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 15px;
    background-color: #212121;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms
}

.btn:hover {
    color: #e8e8e8;
}

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

.footer {
    position: absolute;   
    bottom: 0px;
    padding: 10px 15px;
}

@media only screen and (max-width: 800px) {
    body {
        overflow:auto;
    }
    .btns {
        width: 95%;
        
    }
    #word {
        width: 50%;
        text-overflow: clip;
    }
    #heading {
        font-size: 6vw;
    }
  }
@media only screen and (max-width: 400px) {
    
    .btns {
        width: 100%;
    }
    #word {
        width: 50%;
        text-overflow: clip;
    }
  }