@import url('https://fonts.cdnfonts.com/css/chavezlafia-butter');
h1{
    font-family: 'Chavezlafia Butter', sans-serif;
    font-size: 100px;
    user-select: none;
    cursor: pointer;
}
*{
    padding: 0%;
    margin: 0%;
}
body{
    display: flex;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    background-image: url("./13964.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.btn{
    margin-top: 2rem;
    margin-left: 13rem;
    padding: 0.75rem;
    font-size: 30px;
    border-radius: 1.15rem;
    border: none;
    background-color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 0;
}
.btn::after{
    content:"";
    font-size: 20px;
    border-radius: 1.15rem;
    border: none;
    position: absolute;
    z-index: -1;
    height: 100%;
    width: 0px;
    left: 0%;
    top: 0%;
    transition: 0.4s ease;
    background-color: white;
}
.btn:hover::after{
    width: 100%;
}
.btn:hover{
     box-shadow: 0 0 10px white,0 0 20px white, 0 0 30px white;
}
.joke-container{
    
    display: flex;
    margin-top: 2rem;
    background-color: rgba(245, 245, 220, 0.661);
    font-weight: 500;
    font-size: 50px;
    width:max-content;
    height: max-content;
    border-radius: 1.5rem;
}
.btn2{
    margin-top: 2rem;
    padding: 0.75rem;
    font-size: 30px;
    border-radius: 1.15rem;
    border: none;
    background-color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 0;
}
.btn2::after{
    content:"";
    font-size: 20px;
    border-radius: 1.15rem;
    border: none;
    position: absolute;
    z-index: -1;
    height: 100%;
    width: 0px;
    left: 0%;
    top: 0%;
    transition: 0.4s ease;
    background-color: white;
}
.btn2:hover::after{
    width: 100%;
}
.btn2:hover{
     box-shadow: 0 0 10px white,0 0 20px white, 0 0 30px white;
}
.punch-container{
    display: flex;
    margin-top: 2rem;
    background-color: rgba(245, 245, 220, 0.661);
    font-weight: 500;
    font-size: 50px;
    width:max-content;
    height: max-content;
    border-radius: 1.5rem;
}
