html {
    height: 100%;
}

body {
    margin: 0;
    height: 100%;
    font-family: FreeMono, monospace;
    display: flex;
    flex-direction: column;
    color: #444444;
    // background-color: #ffa737;
}

body > main {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 15px;
}

body > main > h1 {
    text-align: center;
    margin-bottom: 75px;
/*    text-shadow: 0 0 4px white;*/
    
    .love {
    	color: #ff0000;
    }

    .main-header-detail {
        color: #0ca4ff;
    }
}

body > main > .messages {
    flex: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

body > footer {
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 16px 0;

    .contacts {
        margin-bottom: 15px;
    }
    
    small {
        font-size: 16px;
    }
}
