@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 70px;
    border-radius: 10px;
    width: 70%;
    padding: 30px;
    border-radius: 31px;
    background: linear-gradient(145deg, #c7c5bf, #eceae3);
    box-shadow:  50px 50px 100px #9d9b97,
                -50px -50px 100px #ffffff;
}

/* .container {
    display: flex;
}

.joke-container img {

    margin-right: -300px;
    margin-top: 150px;
    background-color: transparent;
}

.chuck-image img {
    margin-left: 140px;
    margin-right: -100px;
}

#generateJoke {
    font-size: 20px;
    padding: 10px;
    border-radius: 10px;
    color: rgb(255, 255, 255);
    background-color: rgb(90, 90, 90);
    cursor: pointer;
    width: 340px;
}

#jokeContent {
    text-align: center;
    margin-top: -270px;
    margin-left: 100px;
    margin-right: -100px;
    font-size: 20px;
} */

.container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .joke-container {
    position: relative;
    text-align: center;
    margin-right: -200px;
  }
  
  img[src="./assets/message-frame.png"] {
    /* max-width: 100%; */
    width: 700px;
    height: 340px;
  }
  
  #jokeContent {
    position: absolute;
    top: 46%;
    left: 44%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: bold;
  }
  
  .chuck-image {
    margin-left: 20px;
  }
  
  img[src="./assets/chuck.png"] {
    height: 700px;
  }
  
  #generateJoke {
    font-size: 20px;
    padding: 10px;
    border-radius: 10px;
    color: rgb(255, 255, 255);
    background-color: rgb(90, 90, 90);
    cursor: pointer;
    width: 340px;
}
  