/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background:url("back.jpg");
  color: white;
  font-family:'Indie Flower'; cursive; sans-serif;
}
  
  /* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: green;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}
  
  
  
  


  h1{ 
    text-align: center;
    font-family:'Open Sans Condensed', sans-serif;
    font-size:60px;
}
h2{
  text-align: center;
  
}
p{font-size:20px;}
/* Layout
------------------------------------------*/


.container,
footer { 
  color:black;
    margin: 0 auto;
    width: 88%;
    max-width: 100%;
}

.wrapper {
    padding: 1em 0;
}

img {
    max-width: 100%;
    height: auto;
}


/* Flex Box Gallery
------------------------------------------*/


.gallery-2 {
    background: white;
    display: flex;
}


.gallery-2 img {
    display: block;
}


.gallery-2 {
    justify-content: space-around;
    flex-wrap: wrap;
}


.one{max-width:70%;}