@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    box-sizing: border-box;
}

body{
    font-family: 'Inter', sans-serif;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
    padding: 20px;
}


.container{
    background-color: aliceblue;
    padding: 50px 20px;
    text-align: center;
    border-radius: 10px;
    width: 800px;
    max-width: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, o.1) 0 6px 6px rgba(0, 0, 0, 0.1);
}

h3{
    margin: 0;
    letter-spacing: 2px;
    opacity: 0.8;
}

.joke {
    font-size: 30px;
    letter-spacing: 1px;
    line-height: 40px;
    max-width: 600px;
    margin: 50px auto;

}


.btn{
    background-color: forestgreen;
    color: aliceblue;
    font-size: 16px;
    padding: 15px 40px;
    border-radius: 40px;
    cursor: pointer;
    font-family: 'Inter', sans-serif; 
}

.btn:active{
    transform: scale(0.98);
}

.btn:focus{
    outline: none;
    
}