@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
body{
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-weight: 300;
    font-size: 0.9em;
    color: rgb(0, 0, 0);
}
h1,h2, h3, h4, h5, h6{
    font-weight: 300;
    font-size: 1.3em;
    margin: 30px 0px 15px;
    text-align: center;
}
h1 {
    font-size: 2em;
    font-weight: 300;
}
.Main-Box{
    width: 60%;
    margin: auto;
    text-align: justify;
    padding-bottom: 50px;
}
@media only screen and (max-width: 800px) {
    .Main-Box{
        width: 90%;
        text-align: justify;
    }
  }
.lower-footer{
    height: 60px;
    line-height: 60px;
    background-color: white;
    color: rgb(65, 65, 65);
    text-align: center;
    font-size: 1em;
    font-weight: 300;
    border-top: 1px solid rgb(206, 206, 206);
}