@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap'); 

*{
    margin: 0;
    padding: 0;
    box-sizing:border-box;
}

body{
    background-color: #252A34;
    color: #ffff;
    font-family: 'Roboto', sans-serif;
}


.container{
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: absolute;
    flex-direction: column;
    /* left: 50%;
    bottom: 30%;
    transform: translate(-50%); */
    text-align: center;
   
}

.heading{
    color: #FF2E63;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.joke-container{
    color: #252A34;
     background-color: #EAEAEA;
     padding: 2rem;
     max-width: 30rem;
     font-size: 1.3rem;
     font-weight: 500;
     border-radius: 10px;
     box-shadow: 1px 2px 5px #FF2E63;
}

.type-container{
    display: flex;
    justify-content: center;
    font-size: 1.2rem;
    gap: 1rem;
    margin: 2rem 0 1rem;
}

.type input{
    cursor: pointer;;
}
.jokeBtn{
    padding: 1rem;
    font-size: 1rem;
    background-color: #252A34;
    color: #EAEAEA;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.4s;
}

.jokeBtn:hover{
    background-color: #EAEAEA;
    color: #252A34;
    transform: scale(1.05);
}

/* 
.copyright{
    text-align: center;
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%);
} */

.copyright a{
    color: #EAEAEA ;
}