body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
    background-color: #373536;
}

.container {
    text-align: center;
    position: relative;
    top: 5%;
}

.logo {
    max-height: 200px;
    margin-bottom: 10px;
}

.company-info h1 {
    margin: 0;
    font-size: 1.6em;
}

.company-info p {
    margin: 5px 0;
    font-size: 1em;
}

.coming-soon p {
    font-size: 1em;
    animation: blinker 3s linear infinite;
}

footer {
    margin-top: 10px;
}

.company-info p, .contact-info p {
    color: #f0f0f0; 
    margin: 5px 0;
    font-size: 1em;
}

.contact-info i {
    margin-right: 8px;
    margin-top:25px; 
    margin-bottom: 25px;
}

a {
    color: #f0f0f0;
    text-decoration: underline;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

a:hover {
    color: #a0a0a0; 
    text-decoration: none; 
}

.social-media a {
    color: white;
    margin: 0 10px;
    font-size: 18px;
    transition: color 0.3s;
}

.social-media a:hover {
    color: #ddd;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}
