*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    box-sizing: border-box;
 
}

body{
    background-color: gray;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;

}

.box{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    background-color: #fff;
    row-gap: 10px;
    width: 300px;
    border-radius: 20px;
    padding: 30px;
}
img{
    width: 100%;
    height: 50%;
    border-radius: 10px;
}
h1{
white-space: nowrap;
font-size: 1.2rem;

}
p{
    white-space: nowrap;
    font-size: 0.8rem;
    text-align: center;
}