* {
    padding: 0;
    margin: 0;
}

body {
    display: flex;
    width: 100%;
    height: 100vh;
    background-color: whitesmoke;
    align-items: center;    
    justify-content: center;
    font-family: "Roboto", "sans-serif";
}

.box-central {
    width: 500px;
    height: 200px;
    border: 1px solid lightgray;
    border-radius: 10px;
    background-color: white;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-central img {
    width: 150px;
    margin: 5px;
}

.box-central h1 {
    font-size: 1.5em;
    font-weight: 300;
    color: gray;
    text-align: center;
    align-items: center;
}