body {
    margin: 0;
    padding: 0;
    user-select: none;
}

.container {
    position: absolute;
    height: 100%;
    width: 100%;
    background: radial-gradient(circle, rgb(253 156 0) 0%, rgb(225 93 0) 100%);
}

.content {
    display: grid;
    width: -webkit-fill-available;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    justify-items: center;
}

h1 {
    color: WHITE;
    text-transform: uppercase;
    font-size: 4em;
    font-family: 'Kufam', cursive;
    text-shadow: 5px 5px 12px black;
}

img {
    width: 15em;
    padding-bottom: 40px;
}

button {
    position: relative;
    z-index: 1;
    border: 2px solid #fff;
    border-radius: 25px;
    font-family: cursive;
    font-size: 15px;
    color: #fff;
    background-color: transparent;
    min-width: 280px;
    min-height: 50px;
    overflow: hidden;
    cursor: pointer;
    text-shadow: 1px 1px 0px black;
}

button::before{
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, #ffc052, #ff6c00, #edca2e);
    transition: all 0.4s;
    opacity: 0;
}

button:hover::before{
    opacity: 1;
}

span {
    position: absolute;
    width: 100%;
    font-family: math;
    font-size: 15px;
    color: #d7cccc;
    bottom: 1%;
    text-align: center;
    text-shadow: 1px 1px 0px black;
}