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


body {
    max-width: 100%;
    line-height: 1.5;
    font-family: 'Open-sans',  Arial, Helvetica, sans-serif;
}

main{
  max-width: 60%;
  min-height: 90vh;
  margin: 2rem auto;
}
.section{
    margin-bottom: 3rem;
}

.title{
    font-family: 'Franklin Gothic Bold';
    /* font-family: 'impact'; */
    text-transform: uppercase;
   font-size: 2rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 1rem;

}

.sub-title{
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.img-container{
width: 100%;
height: 100%

}
img{
    width: 100%;
    height: 50vh;
    margin-bottom: 2rem;
}
h1, h2 {
  
    color: #333;
}

h3{
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
} 

p{
    text-align: justify;
}
a {
    color: #007bff;
    text-decoration: none;
}
  
  
@media screen and (max-width: 800px){
.title{
    font-size: 1.5rem ;
}
img{
    margin-top: -1rem;
    height: 40vh;
}
main{
    max-width: 80%;
   
  }
  .img-container{
   margin-bottom: -1rem;
    
    }

}
  
@media screen and (max-width: 400px){
.title{
    font-size: 1.4rem ;
}
.sub-title{
    font-size: 1.3rem;
}
img{
    height: auto;
}
main{
    max-width: 90%;
   
  }
}