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

.container {
    text-align: center;
    padding: 20px;
}

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

.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;
}

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

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

/* COMPANY DATA */

.company-data{
    max-width:600px;
    width:100%;
    margin:40px auto;
    font-size:14px;
}

.row{
    display:flex;
    justify-content:space-between;
    padding:10px 0;
    border-bottom:1px solid #e6e6e6;
}

.label{
    font-weight:bold;
    color:#172e73;
}

.value{
    text-align:right;
}

/* MOBILE */

@media (max-width:600px){

.company-info h1{
    font-size:1.3em;
}

.company-data{
    margin:30px auto;
}

.row{
    flex-direction:column;
    text-align:left;
    gap:4px;
}

.value{
    text-align:left;
    font-size:14px;
}

.logo{
    max-height:100px;
}

}

/* animation */

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