body {
    background-color: gray;
}



.box {
    width: 800px;
    height: 1400px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.box .image {
    width: 100%;
    height: 400px;
    background-image: url('https://images.unsplash.com/photo-1565299633101-7f3b1c4e9e5f?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

h1 {
    text-align: center;
    margin-top: 20px;
    font-size: 40px;
    color: #333;
}