*{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
}

body{
        font-family: Arial, Helvetica, sans-serif;
        line-height: 1.6;
        background-color: rgb(255, 255, 255);
        color: black;
}

.navbar{
        background: url(images/bubbles_more_blue.jpg);
        background-size: cover;
        color:  rgb(252, 252, 252);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1% 10%;
}

.logo{
        color:  rgb(252, 252, 252);
        font-size: 4em;
        font-weight: bold;
        text-transform: uppercase;
        float: left;
}

.nav-links {
        font-weight: bold;            
        font-size: 1em;           
        letter-spacing:0.02em;      
        text-transform:uppercase;  
        list-style: none;
        display: flex; 
}

.nav-links a{
        display: block;
        color: rgb(255, 255, 255);
        text-decoration: solid;
        text-align: center;
        padding: 10px 20px;
        transition: background 0.3s ease;
}

.nav-links a:hover,
.nav-links a:active{
        background-color: rgb(0, 0, 0);
        border-radius:  4px;
} 

h1, h2, h3 {
        color: black;
        text-align: center;
        text-transform: uppercase;
}

.location, .washer {
        width: 80%;
        margin: 0 10% 5%;
        padding: 2em;
        border: 5px solid rgb(0, 0, 0);
        background-color:rgb(83, 161, 203);
        position:relative;
}

.amenities {
        width: 40%;
        text-align:justify; 
}
#map {
        position: absolute;
        top: 10%; 
        right: 10%; 
}

.size {
        width: 40%;
        text-align: justify;
}

#washer-pic {
        position: absolute;
        top: 10%;
        right: 10%;
}

.aboutUs {
        width: 80%;
        margin: 3% 9% 6% 9%;
        padding: 3em;
        border: 5px solid rgb(0, 0, 0);
        background-color:rgb(83, 161, 203);
}

.info {
        width: 40%;
        text-align: justify;
        float: left;
        margin: 0 9% 10% 0;
}

.moreInfo {
        text-align: center;
        font-weight: bold;
}

.payment {
        text-align: center;  
        font-weight: bold;
        margin: 5em;
}

.ourAddress {
       float:left; 
       line-height: 1;
}

.credit {
       text-align: center;
       margin: 0 0 0 45em;
}

table, th, td {
        border: 1px solid rgb(0, 0, 0);
        text-align: center;
        margin: auto;
        padding: .5em;
}


.slideshow-container {
        max-width:50%;
        position: center;
        margin: auto;
}

/* Need to learn java script
.mySlides {
  display: none;
}
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}  */

.mailing {
        padding:60px 20px;
        text-align: left;
        margin: 20px;
}

fieldset {
        border: 2px solid rgb(0, 0, 0);
        padding: 50px;
        margin: 15px; 
}

footer{
        background-color: rgb(0, 0, 0);
        color:rgb(255, 255, 255);
        position: fixed;
        width: 100%;
        margin: 10em 0 0 0;
        padding: 1em 6em 1em 4em;
        bottom: 0;
}

@media screen and (max-width: 1060px) {
        .navbar {
                flex-direction: column; /* Stacks items vertically */
                align-items: stretch; /* Makes buttons take full width */
        }
         .nav-links {
                display: block; /* Ensures links behave like blocks for full width and padding */
                width: 100%; /* Optional: ensures full width */
                margin: 5px 0; /* Adds spacing between stacked buttons */
        }
        #logo-pic, #logo-info {
                display:none;
        }
        .info, #store-front {
                width: 100%;
                float: none;
        }
}
@media screen and (max-width: 1060px) {
        .amenities, .size {
                width: 100%;
                margin: 0;
        }
        #map {
                margin: 0 30%;
                position: relative;
                width: 60%;
                height: 60%;
        }
        #washer-pic {
                margin: 5% 40%;
                position: relative;
                width: 40%;
        }
}