@import url('https://fonts.googleapis.com/css2?family=Fuzzy+Bubbles&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Fuzzy Bubbles', cursive;
    background: #1B2430;
    color: #fff;
}

.cent {
    margin: 1rem;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.headtext {
    font-size: 2.4rem;
}

.wowtext {
    margin-top: 1rem;
    background-color: #1B2430;
    border: solid 2px white;
    border-radius: 4px;
    padding: 0.5rem 1.6rem;
    width: 34vw;
    height: 4rem;
}

/* From uiverse.io by @adamgiebl */
.button {
    background: #9900F0;
    font-family: inherit;
    padding: 0.6em 1.3em;
    font-weight: 900;
    font-size: 18px;
    border-radius: 0.4em;
    border: none;
    /* box-shadow: 0.1em 0.1em; */
   }
   
   .button:hover {
    transform: translate(-0.05em, -0.05em);
    box-shadow: 0.15em 0.15em;
   }
   
   .button:active {
    transform: translate(0.05em, 0.05em);
    box-shadow: 0.05em 0.05em;
   }

@media only screen and (max-width: 768px) {
    .wowtext {
        margin-top: 1rem;
        background-color: #1B2430;
        border: solid 2px white;
        border-radius: 4px;
        padding: 0.5rem 1.6rem;
        width:80vw;
        height: 4rem;
    }
}