*{
    padding: 0;
    margin: 0;
}

body {
    background-color: orange;
    color: white;
}

.main {
    display: flex;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.para {
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-size: 3rem;
    font-weight: 900;
}

#show-jokes {
    background-color: white;
    color: black;
    text-align: center;
    width: 34rem;
    height: 18rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 1.1rem;
    padding: 0.5rem 1.2rem;
    margin: 0.5rem;
}

#form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.select-design {
    padding: 1rem;
    font-weight: 800;
    color: gray;
    border-radius: 1rem;
}

button {
  position: relative;
  margin: 15px;
  cursor: pointer;
  padding: 15px 30px;
  text-align: center;
  font-size: 18px;
  letter-spacing: 1px;
  text-decoration: none;
  color: #725AC1;
  background: white;
  cursor: pointer;
  transition: ease-out 0.5s;
  border: 2px solid #f6f6f6;
  border-radius: 10px;
  box-shadow: inset 0 0 0 0 #725AC1;
}

button:hover {
  color: white;
  border: 2px solid #725AC1;
  box-shadow: inset 0 -100px 0 0 #725AC1;
}

button:active {
  transform: scale(0.9);
}

@media screen and (max-width: 1024px) {
    .para {
        font-size: 2.75rem;
    }
    #show-jokes {
        width: 30rem;
        height: 17rem;
    }
}

@media screen and (max-width: 768px) {
    .para {
        font-size: 2rem;
    }
    #show-jokes {
        width: 24rem;
        height: 17rem;
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 468px) {
    .para {
        font-size: 1.5rem;
    }
    #show-jokes {
        width: 15rem;
        height: 20rem;
        font-size: 1rem;
    }
    button {
        padding: 12px 25px;
        margin: 10px;
    }
    .select-design {
        padding: 0.75rem;
        height: 3rem;
    }
}