@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, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.container {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: absolute;
    flex-direction: column;
    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: #FF2E63;
    font-size: 1rem;
    font-weight: 200% bold;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.4s;
}

.jokeBtn:hover {
    background-color:#EAEAEA;
    color: #252A34;
    transform: scale(1.05);
}
.copyright {
    color: #EAEAEA;
} 

a {
    color: #EAEAEA;
}