.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 40px;
    background-color: #cc0000;
    color: #fcfafa;
    text-align: center;
    z-index: 9999;
}
.header h1 {
    margin: auto;
    vertical-align: middle;
    font-size: 0.9em;
    padding: 10px;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40px;
    background-color: #a1a1b7;
    color: #000000;
    text-align: center;
}
.footer p {
    margin-top: 10px;
    font-size: 1em;
}
body { 
    background-color: #d8d7d6; 
    } 
    p { 
    text-align: center; 
    font-size: 1.3em;
    margin-bottom: 20%; 
    } 
    img { 
    display: block; 
    width : 150px;
    height : 150px;
    margin-left: auto; 
    margin-right: auto; 
    } 
    .container { 
    margin-top: 8%; 
    } 
    h2 { 
    text-align: center; 
    margin-top: 10%; 
    margin-bottom: 10%; 
    } 
    @media screen and (max-width: 535px) {
        .header h1 {
            font-size: 0.75em;
        }
    }
    @media screen and (max-width: 480px) {
        .header h1 {
            font-size: 0.7em;
        }
    }
    @media screen and (max-width: 405px) {
        .header h1 {
            white-space: nowrap;
            max-width: 405px;
            /*max-height: 7em;*/
            /*line-clamp: 1;*/
            overflow: hidden;
            text-overflow: ellipsis;
            text-size-adjust: auto;
        }
    }