html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin: 0;
    background-color: #e6e6e6;
    display: flex;
    flex-direction: column;
}

#centered {
    text-align: center;
}

.content {
    margin: auto;
    margin-top: 200px;
    max-width: 60%;
    padding-bottom: 60px;
}

@media (max-width: 768px) {
    .content {
        margin-top: 0px !important;
    }
}

.headline {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 30px;
    transition: font-size 0.3s ease;
    text-align: center;
    margin: 40px 0;
    overflow: hidden;
}

#small {
    font-size: 0.5em;
}

footer {
    min-height: 160px;
    background-image: url('../image/footer.png');
    background-color: #5c5c5c;
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    text-align: center;
    padding-top: 50px;
    color: #fff;
}

footer a {
    color: #f9c60cc9;
    font-size: 20px;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {

    .content {
        max-width: 90% !important;
    }
    
    .mspace {
        min-height: 60px;
    }
}