
    body {
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;

    }
     
    
    .disclaimer_container .container_frame h2 {
      text-align: center;
      font-size: 26px;
      margin-bottom: 20px;
      color: #c0392b;
      border-bottom: 2px solid #eee;
      padding-bottom: 10px;
    }

    .container p {
      margin-bottom: 18px;
      font-size: 16px;
      color: #555;
    }

    .highlight {
      font-weight: bold;
      color: #c0392b;
    }

    

    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes slideIn {
      from { transform: translateY(-30px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    @keyframes slideDown {
      from { transform: translateY(-100%); }
      to { transform: translateY(0); }
    }

    @keyframes fadeUp {
      from { transform: translateY(30px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    .disclaimer_container {
  display: flex;
  justify-content: center;
  text-align: justify;
  align-items: center;
  font-family: 'Times New Roman', Times, serif;
}
.container_frame{
  max-width: 50%;
  border: 3px solid #c70707;
  border-radius: 8px;
  padding: 20px;
  
}

    