* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #FFF;
    /* White */
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
}

header,
footer {
    background-color: #80dffe;
    /* Light blue */
    height: 50px;
    display: flex;
    align-items: center;
    padding-left: 20px;
}

header .company-name {
    color: #FFF;
    font-size: 40px;
    font-weight: bold;
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    text-align: center;
}

.center img {
    width: 150px;
    height: auto;
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
}

footer p {
    color: #FFF;
    /* White */
}

.message {
    font-family: 'Pacifico', cursive;
}