@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Fredoka:wght@300..700&family=Lexend:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,500&display=swap');

*{
    font-family: Lexend, sans-serif;
}

body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
    height: 100vh;
}

.container{
    max-width: 960px;
    flex-direction: column;
    height: 75vh;
    margin: 140px auto;
    padding: 20px 20px;
    justify-content: space-between;
    color: #ffffff;
}

.puns{
    letter-spacing: 1px;
    font-size: 40px;
}

.response{
    letter-spacing: 1px;
    font-size: 28px;
}

#new-puns{
    font-size: 15px;
    color: #ffffff;
    padding: 1rem 1.8rem;
    background: rgb(26, 1, 1);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#new-puns:hover{
    transform: scale(1.1);
}

.developed{
    display: flex;
    font-size: 20px;
    align-items: center;
    justify-content: end;
    margin-top: 20rem;
    padding: 0;
    font-weight: 300;
}

footer .developed span{
    margin-left: 4px;
    display: flex;
    text-align: justify;
    font-weight: 500;
    font-size: 25px;
}