body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    font-size: 1vw;
    background-color: #264f9b; /* Assuming deep blue for the body */
}

.header{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.8rem;
        background-color: white;
}

.header img {
    margin-left: .5rem; /* Spacing between the logo and the left side of the page */
}

.row2{
    padding: 1.6rem 3.2rem 1.6rem 3rem;
    background-color: #f2f2f2;
    font-size: 1.4vw;
    font-style: italic;
    color: #4a4f55;
    
}

.main {
    display: flex;
    
    justify-content: center;
    flex-direction: right;
    align-items: center;
    padding: 3.5rem;
    color: white; /* White text for main content */
}

.main .coming-soon {
    color: #fce102; /* Blue text to contrast the yellow */
    font-size: 2.5vw;
    font-weight: bold;
    text-align: right;
    padding: 1vw;
    margin-right: 1vw; /* Spacing between 'COMING SOON' and the store details */
    max-width: 7em;
    font-style: italic;
}

.main .store-details {    
    font-weight: bold;
    padding: 1vw;
    max-width:35vw;
    font-size: 0.9vw;
}

a {
    color: #fce102; /* Link color matching the 'COMING SOON' box */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.coming-soon-contact{
    align-items: left;
    font-size: 0.8vw;
}

.coming-soon-contact thead{
    color: #fce102;
    font-weight: bold;
}

.coming-soon-contact tbody{
    color: white;
    font-weight: normal;
}

.coming-soon-contact tbody tr:first-child td {
    padding-top: 0.7vw; 
    vertical-align: top;
}


.coming-soon-contact tr:not(:last-child) td {
    padding-bottom: 0.7vw; 
    vertical-align: top;
}

.coming-soon-contact tbody tr{
    padding-bottom: 10vw;
}


@media (max-width: 576px) {
    body, html {font-size: 8px;}
    
    .row2{
        display: flex;
        justify-content: center;
        padding: 1rem;
        align-items: center;   
        font-size: 2.5rem;
    }
    
    .header{ justify-content: center;}
    
    .header img {
        margin-left: 0;
        width: 100%;
    }
    
    .main{
        flex-direction: column-reverse;
        padding: 1rem;
    }
    
    .main .store-details{
        text-align: center;
        padding: 0.1rem;
        margin: 0;
        max-width: 100%;
    }
    .main .coming-soon {
        display: none;
    }
}

@media (min-width: 768px) {
    body, html {font-size: 16px;}
    .header img {margin-left: .5rem;}
    .row2{
        padding-left: 3rem;

    }
}

 @media (min-width: 992px) { 
    body, html {font-size: 24px;}        
    .header img {margin-left: .5rem;}
    .row2{
        padding-left: 3rem;
                
    }
 }

@media (min-width: 1200px) { 
    body, html {font-size: 24px;}        
    .header img {margin-left: .5rem;}
    .row2{
        padding-left: 3rem;
        
    }
 }