body {
    display: flex;
    justify-content: center;
    align-items: center;
    text-size-adjust: auto;
    flex-direction: column;
    margin-left: 400px;
    margin-right: 400px;

    /* background-image: url(bg.png); */
    /* background-color: #fcefd9; */
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
  }

.header {
    height: 150px;
    width: 100%;
}

@media (max-width: 767px) {
    .header {
      height: 20vw;
    }
  }

  .text {
    display: flex;
    border-width: 1px;
    border-style: solid;
    border-color: black;
    /* border-radius: 20px; */
    box-shadow: 5px 10px;
    padding:75px;
    flex: auto;
    text-align: left;
    flex-direction: column;
    margin-left: auto; 
    margin-right: auto;
    overflow: hidden;
    margin: 0 auto 0 auto;
    /* background-color: #fcefd9; */


    font-family: "Crete Round", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
}

/* Laptop */
@media (max-width: 1500px) {
    body {
      margin-left: 200px;
      margin-right: 200px;
    }
    .text {
      padding-left: 75px;
      padding-right: 75px;
    }
  }
  
  /* Tablet */
  @media (max-width: 1024px) {
    body {
      margin-left: 75px;
      margin-right: 70px;
    }
    .text {
      padding: 40px;
    }
  }
  
  /* Phone */
  @media (max-width: 500px) {
    body {
      margin-left: 30px;
      margin-right: 25px;
    }
    .text {
      padding: 20px;
    }
    .banner {
      max-width: 280;
    }
  }
  
p {
    margin: 0;
    padding: 0;
    padding-top: 12px;
}

.title {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 5vw;
    padding-bottom: 3vw;
}

.pre-title {
    font-size: 40px;
    padding-top: 20px;
}

.main-title {
    font-size: 50px;
    padding-bottom: 20px;
}

.ch-number {
    font-size: 40px;
}

hr {
    width: 75%;
    border: 1px solid #000000;
    text-align: center;
}

.home {
    font-weight: 500;
    display: flex;
    justify-content: right;
  }

  a {
    /* text-decoration: None; */
    color: #0e4eb5;
}

a:hover {
    color:#ed1367;
}