* {
  margin: 10px;
  padding: 0;
  box-sizing: border-box;
  font-family: cursive;
  }
html, body {
    height: 100%;
    margin: 0;
}
body {
    display: flex;
    flex-direction: column;
    background-image: url("Picture/showroom_background.jpg");
    background-size: cover;          /* Cover entire screen */
    background-repeat: no-repeat;    /* No repeat */
    background-position: center;     /* Center image */ 
}
.logo-wrap
{
    display: flex;
    justify-content: right;
    align-items: right;
    height: 85px;
    position: absolute;
    right: 40px;
}
.site-header 
{
    display: flex;
    justify-content: center;   /* Center navigation */
    align-items: center;
    position: relative;
    list-style: none;
    display: flex;
    gap: 40px;
    padding: 0;
    margin: 0;
    font-size: 20px;
    font-weight: 900;
    
}
.nav
{
    list-style: none;
    background: rgb(202, 189, 189);
    padding: 10px 25px;
    border-radius: 4px;
    display: flex;
    gap: 25px;
    position: center;
}
.nav a {
    color: rgb(231, 144, 144);
}
.Showrooms {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 310px;
    color: rgb(224, 219, 224);
    flex: 1;    
}

.Showrooms h2 {
    width: 100%;
    text-align: center;
    margin: 0;
    color: rgb(240, 95, 11);
}
.Showrooms h3 {
    width: 100%;
    text-align: center;
    margin: 0;
    color: rgb(82, 231, 52);
}

.showroom-list {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
}

.showroom-main,
.showroom-branch1,
.showroom-branch2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background-color: rgba(105, 112, 75, 0.3);
    border-radius: 8px;
}

.showroom-main iframe,
.showroom-branch1 iframe,
.showroom-branch2 iframe {
    width: 300px;
    height: 250px;
}

.site-footer {
    margin-top: auto;
    
}

.site-footer .footer
{
  margin-top: auto;
  margin-bottom: 15px; 
  color: white;
  padding: 1rem;
  text-align: center;
}
