html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-size: 10px;
    min-width: 320px;
}

body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 10px;
    width: 100%;
    height: 100%;
    min-width: 320px;
    background-color: rgb(245, 245, 245);
    font-family: Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

.message {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
} 

.message-box {
    width: 100%;
    max-width: 600px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 2rem;
}

.message__image {
    display: flex;
}

.message__image-photo {
    width: 100%;
    height: 100%;
}

.message__text {
    font-size:2.5rem;
    text-align: center;
}