body {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: pink;
}

h1 {
    font-size: 50px;
    font-family: "Arial Narrow", sans-serif;
    letter-spacing: 4px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.btn {
    padding: 30px 50px;
    background-color: white;
    border: none;
    margin: 10px;
    font-size: 30px;
    min-width: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    background-image: url("images/tom.png");
    background-size: cover;
    color: white;
    font-family: cursive;
    text-shadow: wpx 2px 4px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    text-transform: capitalize;
}

.btn:hover {
    color: pink;
}

.btn:active {
    background-size: 105%;
}

.container {
    text-align: center;
}