body {
    background-image: url('/images/tile.png');
    font-family: 'Courier New', Courier, monospace;
}

.container {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    text-align: center;
}

img {
    height: 400px;
}

button {
    font-size: 22px;
    padding: 20px 40px;
    background-color: pink;
    border: 1px purple dashed;
    border-radius: 15px;
    cursor: pointer;    
    transition: .5s ease-in-out;
}
button:hover {
    background-color: rgb(255, 143, 162);
    scale: 1.5;
}