html, body {
    margin: 0;
    background-image: url("./imgs_and_pdf/Corporate_UI/bg4.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    object-fit: cover;
    background-attachment: fixed;
    text-align: justify;
  }
  
  .container {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .content {
    flex: 1;
    height: 100%;
    flex-direction: column;
    padding: 50px;
  }
  
  .content ul li {
    margin-left: 40px;
  }
  
  .topText {
    padding: 30px;
  }
  
  .middleText {
    padding: 30px;
  }
  
  .bottomText {
    padding: 30px;
  }
  
  .title {
    font-size: 40px;
    font-weight: 700;
    color: whitesmoke;
    margin-bottom: 10px;
    font-family: 'Times New Roman', Times, serif;
  }
  
  .text {
    display: flex;
    margin-bottom: 10px;
    color: white;
    font-size: 23px;
    text-shadow: 1px 1px 5px #ffcab0; 
    font-weight: 500;
  } 

  ul li {
    color: white;
    text-shadow: 1px 1px 5px #ffcab0; 
    font-weight: 500;
  }
  
  .footer {
    width: 100%;
    background-color: rgb(100, 54, 226, 0.5);
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    font-size: clamp(8px, 0.7vw, 15px);
    font-weight: 0;
    position: relative;
    bottom: 0;
  }

  @media (width > 1539px) {
    .container {
      height: 100vh;
    }
  }

  .footer h2{
    color: yellow;
  }

  
