body{
    background-color: #83CD6A;  
    font-family: 'Courier New', Courier, monospace;
    background-image: url("../images/background-image.jpeg");
}

div{
    display: flex;
    justify-content: center;
    align-items: center;
}

button{
    height: 4em;
    width: 15em;
    font-family: 'Courier New', Courier, monospace;
}

header{
    display: flex;
    justify-content: flex-start;
    margin-left: 8em;
}

h1 {
    font-size: 3em;
    padding: 20px;
    background-color: #419C41;
    border: 2px solid black;
    width: 8em;
    margin: auto;
}

button {
    background-color: #419C41;
    margin: 20px;
    font-weight: bold;
    font-size: larger;
}

div div p {
    font-size: 2.5em;
    color: white;
}

header img {
    height: 100px;
    width: 100px;
    background-color: #419C41;
    border-radius: 30px;
    border: 2px solid black;
}

.text-bubble{
    width: 200px;
    height: 110px;
    border: 2px solid black;
    background-color: white;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    margin-bottom: 10em;
    text-align: center;
    font-size: 1.5em;
}

.image{
    filter: drop-shadow(0px 0px 10px
    black);
    animation: shake-animation 3s linear infinite;
}

.candies{
    height: 100px;
    width: 100px;
}

@keyframes shake-animation {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(-5deg); }
    100% { transform: rotate(0deg); }
  }