.header {
    padding: 20px;
    text-align: center;
    background: #161616;
    color: white;
    font-size: 20px;
    font-family: Georgia, serif;
}

.content {
    padding: 20px 0; 
    margin: 20px;
    font-size: 14px;
    font-family: serif;
}

.pending {
    font-size: 40px;
    text-align: center;
}

.construction-content {
    font-size: 22px;
    text-align: center;
    color: rgb(235, 63, 23);
    font-weight: bold;
    padding: 15px 0; 
}

.main-container {
    min-height: 100vh; /* 100% of the viewport height */
    display: block;
    position: relative;
    padding-bottom: 20px; /* height of your footer */
}

html {
    height: 100%;
 }

body { 
    margin: 0;
    height: 100%; /* 100% of the parent's element height */
    position: relative;
    overflow: scroll;
}

img {
    border-radius: 25px;
}

nav {
    overflow: hidden;
}
nav a {
    color: white;
    text-decoration: none;
}

footer {
    padding: 20px 0; 
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    background:#161616;
    color: white;
    font-size: 14px;
    font-family: serif;
}