/* Gallery*/
.container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 40px 20px 0 20px;
}

.container .heading{
  width: 50%;
  padding-bottom: 50px;
}
.container .heading h3{
  font-size: 3em;
  font-weight: bolder;
  padding-bottom: 10px;
  border-bottom: 3px solid #222;
}

.container .heading h3 span{
  font-weight: 100;
}
.container .box{
 display: flex;
 flex-direction: row;
 justify-content: space-between;
}

.container .box .dream{
  display: flex;
  flex-direction: column;
  width: 32.5%;
}

.container .box .dream img{
  width: 100%;
  padding-bottom: 15px;
  border-radius: 5px;
}

.container .btn{
  margin: 40px 0 70px 0;
  background: #222;
  padding: 15px 40px ;
  border-radius: 5px;
}

.container .btn a{
 color: #fff;
 font-size: 1.2em;
 text-decoration: none;
 font-weight: bolder;
 letter-spacing: 3px;
}
@media only screen and (max-width: 769px){
    .container .box{
   flex-direction: column;
  }

.container .box .dream{
  width: 100%;
    
}





}

@media only screen and (max-width: 643px){
.container .heading{
  width: 100%;
}
.container .heading h3{
  font-size: 1em;

}


}
/* fade out and in gallery*/
div:hover figure {
    opacity: 0.3;
}

div figure:hover {
    opacity: 1;
}

div figure {
    transition: 0.6s opacity;
}
/* Footer styles */
footer {
    background-color: #f8f9fa;
    padding: 30px 0;
    text-align: center;
    margin-top: 50px;
    border-top: 1px solid #e9ecef;
    width: 100%;
}

.list-inline {
    padding: 0;
    list-style: none;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.list-inline-item {
    margin: 0 15px;
}

.list-inline-item a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s;
}

.list-inline-item a:hover {
    color: #343a40;
    text-decoration: underline;
}

.copyright {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
}

/* Optional: Add a subtle top border */
.site-footer {
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Ensure footer stays at bottom if content is short */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}