body{
    font-family: 'Open Sans', sans-serif;
    margin: 0%;
    background: #262521;
    height: auto;
}

h1 {
    font-weight: 400;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
}

h2{
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: capitalize;
    margin: 0;
}

img{
    display: block;
    width: 100%;
    border: solid rgba(0, 0, 0, 0.397);
    border-radius: 5px;
}



main{
    max-width: 900px;
    margin: auto;
}


#landing-text h1{
    font-family: 'Poiret One', cursive;
    color: #8C8C87;
    font-size: 5.5rem;


}

.highlight{
    color: #DB3944;
    font-weight: bold;}

#landing-text {
    display: flex;
    flex: 1 1 60vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-right: 1rem;
    padding-left: 1rem;
}




.btn {
    padding: 0.5rem 2rem;
    border: 1px #ccc solid;
    display: inline-block;
    margin: 2rem 0 0;
    border-radius: 50px;
    text-decoration: none;
    color: rgb(255, 255, 255);
    transition: background 500ms ease;

}

.btn:hover{
    background: #CED98F;
    color: black;

}

#header {
 padding: 1.5rem;
 text-align: center;
 background: #e6e6e627;
 color: rgb(255, 255, 255);
 border: solid #262521;
 border-radius: 5px;
}

#header h2 {
    border-left: dotted 1px #fff;
    border-right: dotted 1px #fff;
    display: inline-block;
    padding-right: 1rem;
    padding-left: 1rem;
    
}

.caption {
    padding: 0.8rems;
    padding-bottom: 3.5rem;
    text-align: center;
    color: white;
}

li {
    list-style: none;
}

footer {
    background: #595951;
    text-align: center;
    padding: 2rem 1rem;
    margin: auto;
    color: white;
}

footer h3 {
    font-family: 'Poiret One', cursive;
    text-decoration: underline;
    font-size: 3rem;
    margin-bottom: 0;
}

footer a {
    font-size: 1.25rem;
    text-decoration: none;
    color: #CED98F;
}

/*Photo!*/

.photo-wrapper{
    display: grid;
    grid-template-columns: repeat(3, 1fr) ;
    grid-auto-rows: minmax(100px, auto);
    gap: .5em;
    justify-items: stretch;
    align-items: stretch;
}

.photo-wrapper > div{
    background: none;
}

.photo-box1{
    grid-column: 1/3;
    grid-row: 1;
}
/*
.photo-box2{   
}

.photo-box4{  
}

.photo-box5{   
}

.photo-box6{   
}
*/
/*Media S!*/

.wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr ;
    grid-auto-rows: minmax(100px, auto);
    gap: 1em;
    justify-items: stretch;
    align-items: stretch;
}

.wrapper > div{
    background: none;
    padding: .5em;
}

.box1{
    grid-column: 1/5;
    grid-row: 1/3;
    
}

.box2{
    /*align-self: flex-end;*/
    grid-column: 1/3;
    grid-row: 2/4;
    
}


.box3{
    /*justify-self: end;*/
    grid-row: 3;
    grid-column: 1/3;
}

.box4{
    grid-row: 3;
    grid-column: 3/5;
}



/*Social Test*/
.fa {
    padding: 20px;
    font-size: 2rem;
    width: 2rem;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    border-radius: 15%;
  }
  
  .fa:hover {
      opacity: 0.4;
  }
  
  .fa-facebook {
    background: #3B5998;
    color: white;
  }
  
  .fa-twitter {
    background: #55ACEE;
    color: white;
  }

  .fa-flickr {
    background: #f40083;
    color: white;
  }

/* Size 500px+*/

@media (min-width: 500px) {
    #landing {
        display: flex;
        height: 100%;
    }

    #landing-text {
        height: 100vh;
    }

    #landing-image {
        height: 100vh;
    }
}

/* sizes 700px+*/
@media(min-width: 700px) {
    .btn {
        padding: 1rem 3rem;
    }
}