*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #3A55EC;
}

.main-container{
    width: 70%;
    max-width: 700px;
    height: 450px;
    background-color: #fff;
    border-radius: 1rem;
    padding: 1rem;
}

.search-container{
    width: 100%;
    height: 55%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.search-container h1{
    color: #6d6dfc;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

#category{
    width: 30%;
    height: 40px;
    outline: none;
    margin: 0.5rem;
    cursor: pointer;
    border-radius: 0.5rem;
}

button{
    width: 35%;
    height: 45px;
    border: none;
    outline: none;
    color: #fff;
    font-weight: 550;
    font-size: 1.1rem;
    background-color: #6d6dfc;
    cursor: pointer;
    border-radius: 1.5rem;
}

.output-joke{
    width: 100%;
    height: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background-color: #f3f2f2;
    border-radius: 1rem;
}