body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    
    display: flex;
    flex-direction: column;
    background-color: #f7f3f3;
}

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

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

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

.main {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    padding: 3.5rem;
    color: white; /* White text for main content */
    border: 5px solid green;
}

a {
    color: #9a9999; /* Link color matching the 'COMING SOON' box */
    font-weight: bolder;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.contactInfo {
    color: #9a9999;
    font-weight: bolder;
}

.contactInfo .contactHeader{
    color: #bde190;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.3vw;
}

.contactInfo ul{
    list-style-type: none;
    padding: 0;
    margin-bottom: 2vw;
    font-size: 1.3vw;
}

.contactInfo ul li{
    margin-bottom: .5vw;
}


.contactInfo .openingTimes{
    font-weight: lighter;
}

.socials{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 2.5vw;
}

.socials-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4vw; /* Diameter of the button */
    height: 4vw; /* Diameter of the button */
    background-color: #bde190;
    border-radius: 50%; /* Makes it round */
    text-decoration: none; /* Removes underline from the link */
    color: white; /* Color of the Twitter icon */
    margin-right: 10px; /* Spacing between the buttons */
    transition: background-color 0.3s;
}

.socials-button i {
    font-size: 2.25vw; /* Size of the Twitter icon */
}

.socials-button:hover {
    background-color: #a3d17d; /* Darker shade for hover effect */
    text-decoration: none; /* Removes underline from the link */
}

.contact-button {
    background-color: #5e3a9d; /* Adjust the color to match the image */
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1vw;
    margin: 4px 2px;
    cursor: pointer;
    border: none;
    border-radius: 15px; /* This gives the rounded corners */
    transition: background-color 0.3s;
    text-decoration: none; /* Removes underline from the link */
    width: 11vw;
}

.contact-button:hover {
    background-color: #472d77; /* Darker shade for hover effect */
    text-decoration: none; /* Removes underline from the link */
}

.bottom-image {
  position: relative;
}

 .bottom-image H2, .bottom-image H4{
  position: absolute;
  color: white;
}

.bottom-image h2{
  top: 65%;
  width: 75%;
  margin-left: 12.5%;
  font-size: 3vw;
}
.bottom-image h4{
  top: 82%;
  width: 75%;
  margin-left: 12.5%;
  font-size: 1.75vw;
}

.bottom-image .email {
    text-decoration: none;
    color: #fce502;
}

.michelinmanContainer{
   /*  overflow: hidden; /* This will hide anything that goes outside the container */
    height: 15rem; /* Adjust this value as needed */
    margin-left: auto;
    padding-right: 10vw;
/*    padding-top: 8vw; */
}

.michelinman{
    display: block;
    width: 100%;
    height: auto;
    align-self: flex-start;
}
/* Regional links */

.links{
    position: absolute;
    width: 7%;
    color: #264f9b;
    font-size: 1.2vw;
    font-weight: bold;
}

.USALink {
    top: 23.5%;
    left: 24%;
}

.CanadaLink {
    top: 13%;
    left: 29%;
}

.MexicoLink{
    top: 32.5%;
    left: 27.5%;
}

.BrazilLink{
    top: 39%;
    left: 42%; 
}

.EULink{
    top: 22.5%;
    left: 48%; 
    width: 10%;
}

.TurkeyLink{
    top: 13%;
    left: 53%; 
}

.IndiaLink{
    top: 23.5%;
    left: 70%; 
}

.ChinaLink{
    top: 31%;
    left: 73%; 
}

.ThailandLink{
    top: 40%;
    left: 77%; 
    width: 10%;
}

.SouthKoreaLink{
    top: 21%;
    left: 83.5%; 
    width: 10%;
}

.JapanLink{
    top: 30.5%;
    left: 86.5%; 
    width: 10%;
}

.AUSLink{
    top: 55%;
    left: 80.5%; 
    width: 10%;
}





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


 }