
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}   
body {
    background-image: url("img/Wood2.jpg");
    
 /* Prevent image tiling */
  background-repeat: no-repeat;

  /* Scale image to cover the entire screen */
  background-size: cover;

  /* Center the image */
  background-position: center;

  /* Fix the background so it doesn't scroll with content */
  background-attachment: fixed;

  /* Ensure body occupies full height */
  min-height: 100vh;

}

.Address {
    display: flex;
    flex-wrap: wrap;
}   


.Oshawa {
    flex: 1 200px;
    height: 100px;
    background-color: #392b22;
    color: #ffff6b;
    text-align: center;
    flex-wrap: wrap;
}   

.Bowmanville {
    flex: 1 200px;
    height: 100px; 
    background-color:#392b22;
    color: #ffff6b;
    text-align: center;
    flex-wrap: wrap;
}

.PortPerry{
    flex: 1 200px;
    height: 100px; 
    background-color: #392b22;
    color: #ffff6b;
    text-align: center;
    flex-wrap: wrap;
}

 
.underCon {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3em;
    color: #ffff6b;
}