*{
  margin: 0;
  padding: 0;
}
body{
background-color: whitesmoke;
}
.about {
  background-image: url(flowerbackground.jpg);  background-size: cover;  
    
}

/* navbar */

.navbar{
  display: flex;
  list-style: none;
  /* justify-content: flex-start; */
  background-color: rgba(128, 128, 128, 0.7) ;
  /* position:  sticky; */
  top: 0;
  width: 100%;
}

.btn{
  font-family: 'Oswald', sans-serif;
  color: black;
  text-align: center;
  text-decoration: none;
  /* padding:15px;
  margin: 2px; */
  font-size:1.5em;
}

/* a {
  text-decoration: none;
} */

li{
  padding:15px;
  margin: 2px;
  /* font-size:1.5em */
}

/* .shape { */
  /* border-radius: 25px;
  border: 2px solid black; */
  /* padding: 5px; */
  /* font-size:1.5em */
  /* width: 200px;
  height: 80px;  */


/* .sticky {
  position:  sticky;
  top: 0;
  width: 100%;
} */

/* li:hover {

  /* background-color: white; */
  /* border: 2px solid white;
  padding: 13px;
} */
.btn:hover{
  color: white
}

 


/* cover */
.container {
    /*show heigh: auto*/
    /* position: static; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;

}

.cover{
   width: 100%;
  height: 10%; 
}
.bar{
  margin-top: 30px
}


/* .box{
  width: 20px;
  height: 30px;
  padding: 10px
  margin: 50px
  border-radius: 25px
  border: 5px solid purple



} */

.box{
  width: 33.33%;
  /* height: 300px; */
  padding: 30px;
  /* border: 5px solid gray; */
  /* border-radius: 10px; */
  background-color: rgba(128, 0, 128, 0.3);
  margin: 10px;

}

.text{
  font-weight: bold;
  align-content: center;
  font-size: 2em

}

.box:hover{
  transition: all 1s;
  transform:  scaleY(1.2);
}
 .catch{
  margin: 50px;
  
  padding: 80px;
  text-align: center;
  background-image: url(lots.jpg); background-size: cover;
  
 }

.bold{
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 7em;
  font-weight: bold;
}
button{
  background-color: black;
  margin: 50px;
  padding: 5px;
  font-size: 2em;
  border-radius: 3px;  
}

a{
  text-decoration: none;
  color: white;
}
button:hover{
  transition: ease-in 4s;
  transform:  scale(1.2);
}
/* gallery page style */
h2 {
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-style: oblique;
  background-color: none;
  /* margin-top: 30px; */
  font-size: 50px;
}
img {
  
  width:100%;
  height: 100%;
  margin-left: 0;
  margin-right: 0;
  /* border-style: solid;
  border-color: black */
  /* width:  500px;
  height: 300px;
  margin: 5px */
}
.out {
  width: 300px;
  height: 500px;
  margin: 5px
}

/* about page style */
.desc{
  background-color: rgb(255, 255, 255 ,.5);
  text-decoration: none;
  font-family: 'Oswald',sans-serif;
  font-size: 3em;
  font-weight: lighter;
  padding: 40px;
  /* border: 2px dashed black; */
  /* border-style: double;
  border-color: black; */
  margin: 50px;

}


hr{
  width: 25%;

  border: 2px solid purple;
  /* border-radius: 5px; */
  margin: auto;
}

/* footer style */

footer{
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  color: white;
  padding: 20px;
  justify-content: space-around;
  

}
.ft{
  font-family: 'Oswald', sans-serif;
  /* width: 25%; */
 
  
}
.rt{ 
  text-decoration: none;
  color: white;
  border-style: groove;
  border-color: white;
  text-align: center;
  padding: 2px;
}
/* If the screen size is 800px or less be on the bottom so it wont over write */
@media only screen and (max-width: 700px) {
  .btn {
      font-size: 1em;
      
  }
  li{
    padding: 0;
  }

  .navbar{
    justify-content:space-around;
  }
  .container{
    flex-direction: column;
    margin-top: 10px;
    
  }
  
  .catch{
    /* width: 100%; */
    margin: 0;


  }
  .bold{
    text-align:center;
    font-size: 3em;
  }
  /* about page */
  .desc{
    text-align: center;
    font-size: 1em;

    
  }
  .rt{
    display: none;  
  }
  
  footer{
    display: flex;
    flex-direction:column;
    text-align: center;
   
  }
  
  
  
}

