html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Arial', sans-serif;
}

.background {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.construction-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.construction-content {
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 2rem;
}

.construction-content h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #8ACAFF;
}

.subtitle {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 2rem;
    color: #ccc;
}

.favicon-link {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 3;
    text-decoration: none;
    display: block;
}

.favicon {
    position: static;
    top: auto;
    left: auto;
    z-index: auto;
}

.favicon img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.favicon img:hover {
    transform: scale(1.1);
}

.favicon-icon {
    width: 32px;
    height: 32px;
    background-image: url('../images/untitledlogoSynClitex.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    vertical-align: middle;
}

footer { 
    display: flex;
    width: 100%;
    bottom: 0;
    position: fixed;
    justify-content: center;
    text-align: center;
    z-index: 2;
    background-color: rgba(138,202,255,0.7);
}

footer a,p{
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    margin: 0 1rem;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

@keyframes progress-animation {
    0% { width: 30%; }
    100% { width: 70%; }
}

.message {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact {
    font-size: 0.9rem;
    color: #aaa;
}

.contact a {
    color: #8ACAFF;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}