 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
 }
 html,body {
  width: 100%;
  height: 100%;
 }

 body {
  font-family: Arial, Helvetica, sans-serif;
 }
 .container {
    width: 100%;
    height: 100%;
 }
 .nav {
    width: 94%;
    height: 100px;
    border-bottom: 2px solid  #7B2C2C;
    margin-left: 2vw;
    margin-right: 2vw;
    padding: 20px;
    text-align: center;
 }
 .nav h1 span {
    color:  #7B2C2C;
 }
 .content {
    width: 100%;
    height: calc(100% - 100px);
    padding: 4vw;
    text-align: center;
 }
 .content h2 {
    font-size: 5.5vw;
    color:  #7B2C2C;
    
 }
 .content p {
    font-size: 3vw;
    line-height: 7vh;
 }
 .footer {
    height: 60px;
    width: 100%;
    background-color:  #7B2C2C;
    display: flex;
    justify-content: center;
    align-items: center;
 }
 .footer p {
    font-size: 2vw;
 }

 
 
 @media (max-width:700px){
    .nav {
        height: 60px;
        padding: 10px;
    }
    .nav p {
        display: none;
    }
    .nav h1 {
        font-size: 5vw;
    }
    .content {
        width: 100%;
        height: calc(100% - 60px);
        padding: 10vw;
    }
    .content h2 {
        font-size: 8vw;
    }
    .content p {
        font-size: 4vw;
        line-height: 5vh;
    }
    .footer p {
        font-size: 3vw;
    }

 }
