body{
   background-color: hsl(33, 100%, 88%, 0.60);

}

.title-display{
    text-align: center;
    justify-content: center;
    height: 12vh;
    margin-top: 20px
}
.content{
    margin-top: 3%;
    display: flex;
    justify-content: space-around;
}

.text{
    width: 200px;
    background-color:rgba(128, 128, 128, 0.788);
    border-radius: 6px;
}

img{
    width: 200px;
    height: 200px

}
button{
    width: 100px;
    border-radius: 20px;
    font-size: larger;
    transition: background-color 0.3s;
    cursor: pointer;
}

button:hover{
    background-color: rgba(128, 0, 128, 0.197);
    color: whitesmoke;
}

